body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: relative;
}

main {
    padding: 2rem;
}

section {
    background-color: #fff;
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 1rem;
}

h1, h2 {
    color: #333;
}

#user-email {
    font-weight: bold;
    color: #4CAF50;
}

#stream-status {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
}

#status-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 5px;
}

#status-icon.connected {
    background-color: #4CAF50;
}

#status-icon.disconnected {
    background-color: #f44336;
}

#upload-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#upload-form button {
    background-color: #4CAF50;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#upload-form button:hover {
    background-color: #45a049;
}

#upload-progress-container {
    margin-top: 1rem;
}

#upload-progress {
    width: 100%;
    height: 20px;
}

#upload-percentage {
    margin-left: 10px;
}

#videos {
    list-style-type: none;
    padding: 0;
}

#videos li {
    margin-bottom: 1rem;
}

#videos video {
    max-width: 100%;
    height: auto;
}