#auth-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.auth-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.auth-container h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.form-container {
    display: none;
}

.form-container.active {
    display: block;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

button {
    background: rgb(6, 53, 68);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

button:hover {
    background: rgb(5, 42, 54);
}

button:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.divider span {
    padding: 0 1rem;
    color: #666;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgb(6, 53, 68);
    color: white;
    border: none;
}

.google-btn:hover {
    background: rgb(5, 42, 54);
}

.google-btn img {
    width: 20px;
    height: 20px;
}

.auth-switch {
    text-align: center;
    margin-top: 1rem;
}

.auth-switch a {
    color: rgb(6, 53, 68);
    text-decoration: none;
}

.auth-switch a:hover {
    text-decoration: underline;
}

.error-message {
    color: #f44336;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

#user-info {
    display: none;
    text-align: right;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 8px;
    margin: 10px 0;
}

#signout-btn {
    background: rgb(6, 53, 68);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-left: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

#signout-btn:hover {
    background: rgb(5, 42, 54);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6, 53, 68, 0.2);
}

#livestream-section {
    display: none;
    width: 100%;
    padding: 20px;
    margin-top: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 1;
}

#livestream-section.visible {
    display: block;
    opacity: 1;
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.center-container iframe {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.navbar a.active {
    color: rgb(6, 53, 68);
} 
