/* Authentication Modal Styling */
#authModalOverlay { 
    background: rgba(0, 0, 0, 0.8); 
    backdrop-filter: blur(5px); 
}
#authModal { 
    background: #000000; 
    color: #e5e7eb; 
    border: 1px solid rgba(255, 255, 255, 0.2); 
}
#authModal h3 { 
    color: #F57C00; 
}
#authModal label { 
    color: #d1d5db; 
}
#authModal input, #authModal select { 
    background-color: #1f2937; 
    border-color: #4b5563; 
    color: #f3f4f6; 
}
#authModal input:focus, #authModal select:focus { 
    border-color: #F57C00; 
    box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.3); 
    outline: none; 
}
#authModal select { 
    appearance: none; 
    -webkit-appearance: none; 
    -moz-appearance: none; 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23f3f4f6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E"); 
    background-repeat: no-repeat; 
    background-position: right 0.75rem center; 
    background-size: 1rem; 
    padding-right: 2.5rem; 
}
#authModal select option { 
    background-color: #1f2937; 
    color: #f3f4f6; 
}
#authModal button[type="submit"] { 
    background-color: #F57C00; 
    transition: all 0.2s; 
}
#authModal button[type="submit"]:hover:not(:disabled) { 
    background-color: #E65100; 
}
#authModal button[type="submit"]:disabled { 
    opacity: 0.7; 
    cursor: not-allowed; 
}
#authModal .text-gray-700 { 
    color: #d1d5db; 
}
#authModal .text-orange-link { 
    color: #FFB74D; 
}
#authModal .text-orange-link:hover { 
    color: #FFA726; 
}
#closeAuthModal { 
    color: #9ca3af; 
}
#closeAuthModal:hover { 
    color: #e5e7eb; 
}
.auth-divider { 
    display: flex; 
    align-items: center; 
    text-align: center; 
    color: #9ca3af; 
    margin: 1rem 0; 
}
.auth-divider::before, .auth-divider::after { 
    content: ''; 
    flex: 1; 
    border-bottom: 1px solid #4b5563; 
}
.auth-divider:not(:empty)::before { 
    margin-right: .5em; 
}
.auth-divider:not(:empty)::after { 
    margin-left: .5em; 
}