/* =================================================================
   style.css - Talkrio additional styles
   (Core styling is inline in index.html to preserve Tailwind flow)
   ================================================================= */

/* Login Modal overlay */
.modal-overlay {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Form inputs */
.auth-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    color: #1a1a2e;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: 'Inter', system-ui, sans-serif;
}

.auth-input:focus {
    border-color: #FF6B8A;
    box-shadow: 0 0 0 3px rgba(255, 107, 138, 0.1);
}

.auth-input::placeholder {
    color: #94a3b8;
}

/* Auth button */
.auth-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', system-ui, sans-serif;
}

.auth-btn-primary {
    background: linear-gradient(to right, #FF6B8A, #7C5CFF);
    color: white;
}

.auth-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.auth-btn-google {
    background: white;
    color: #1f1f1f;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.auth-btn-google:hover {
    background: #f8fafc;
}

/* Auth error message */
.auth-error {
    color: #ef4444;
    font-size: 0.8125rem;
    min-height: 1.25rem;
}

/* Profile dropdown */
.profile-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
}

.profile-wrapper:hover .profile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* NOTE: Tailwind handles .hidden and .flex — don't override them here.
   Using !important breaks responsive classes like md:flex, sm:block, etc. */
