:root {
    --primary-color: #005a9c;
    --secondary-color: #f0f0f0;
    --border-color: #ccc;
    --text-color: #333;
    --white: #fff;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: var(--secondary-color);
    color: var(--text-color);
}

header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    position: relative; /* [START NEW CODE] Added to anchor absolute elements */
}

.header-title-container h1 {
    margin: 10px;
}

.header-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

#header-logo {
    width: 32px;
    height: 32px;
    margin-right: 15px; /* Adds space between the logo and the "ACCV" title */
}

nav {
    display: flex;
    justify-content: center;
    background-color: #004c85;
}

nav a {
    color: var(--white);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover, nav a.active {
    background-color: #003a66;
}

main {
    padding: 1rem;
    max-width: 900px;
    margin: 0 auto;
}
#content-container {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

#sidebar {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 1.5rem;
}
#sidebar section {
    padding: 0;
    border: none;
    margin-bottom: 1.5rem;
}
#sidebar section:last-child {
    margin-bottom: 0;
}
#sidebar h2 {
    margin-top: 0;
    font-size: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}
#sidebar button, #sidebar select {
    width: 100%;
    margin-bottom: 0.5rem;
    box-sizing: border-box;
}
#sidebar .form-actions button {
    margin-bottom: 0.5rem;
}
#sidebar .form-actions {
    margin-top: 0.5rem;
    display: block; 
}

section {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

h1, h2 {
    margin-top: 0;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

input[type="text"], input[type="number"], input[type="date"], select {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    margin: 0 0.5rem 0.5rem 0; /* Adds space to the right and bottom for wrapping */
}

button:hover {
    background-color: #004c85;
}

.form-container {
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 5px;
}

.form-actions {
    margin-top: 1rem;
}

#cancel-employee-btn {
    background-color: #6c757d;
}
#cancel-employee-btn:hover {
    background-color: #5a6268;
}

fieldset {
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    padding: 1rem;
}

pre {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 1rem;
    white-space: pre-wrap;
    word-wrap: break-word;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid var(--border-color);
    padding: 0.8rem;
    text-align: left;
}

th {
    background-color: var(--secondary-color);
}
#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    color: white;
}

.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid var(--primary-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1.5s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- HAMBURGER MENU STYLES --- */
#hamburger-btn {
    display: none; /* Hidden by default on PC */
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

#hamburger-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.3s;
}

/* --- MODAL STYLES (ALL) --- */
#clear-data-modal,
#confirm-modal,
#info-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 2000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
    align-items: center;
    justify-content: center;
}

/* --- App Message Box Styles --- */
.app-message-box {
    border: 1px solid;
    padding: 1rem;
    border-radius: 5px;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.5;
}
.app-message-box.success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}
.app-message-box.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-color: #bee5eb;
}
.app-message-box.warning {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

/* --- Generic Info/Alert Modal --- */
#info-modal {
    z-index: 2000; /* Higher than other modals */
}
.info-modal-content {
    background-color: #fff;
    padding: 25px 30px;
    border: 1px solid #ccc;
    width: 90%;
    max-width: 450px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    border-top: 5px solid var(--primary-color); /* Default to info blue */
}
.info-modal-content.success { border-top-color: #28a745; }
.info-modal-content.info { border-top-color: #005a9c; }
.info-modal-content.warning { border-top-color: #dc3545; }

.info-modal-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4em;
    color: #333;
}
.info-modal-content.success h3 { color: #155724; }
.info-modal-content.info h3 { color: #0c5460; }
.info-modal-content.warning h3 { color: #721c24; }

#info-modal-message {
    margin-bottom: 25px;
    line-height: 1.5;
    font-size: 1em;
}
.info-modal-actions {
    text-align: right;
    margin-top: 10px;
}
#info-modal-ok {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    color: white;
    background-color: var(--primary-color);
}
.info-modal-content.success #info-modal-ok { background-color: #28a745; }
.info-modal-content.info #info-modal-ok { background-color: #005a9c; }
.info-modal-content.warning #info-modal-ok { background-color: #dc3545; }


/* --- Clear Data Modal Styles --- */
.clear-modal-content {
    background-color: #fff;
    padding: 25px 30px;
    border: 1px solid #ccc;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
}

#clear-data-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

#clear-data-close-btn:hover,
#clear-data-close-btn:focus {
    color: #333;
    text-decoration: none;
}

.clear-modal-content h2 {
    color: #dc3545;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.clear-modal-content p {
    margin-bottom: 15px;
    line-height: 1.4;
}

#clear-data-confirm-input {
    width: 100%; /* Use 100% width, box-sizing handles the rest */
    padding: 10px;
    margin-bottom: 20px;
    font-size: 1em;
}

.clear-modal-actions {
    text-align: right;
    margin-top: 10px;
}

#clear-data-cancel-btn,
#clear-data-confirm-btn {
    padding: 10px 18px;
    margin-left: 10px;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

#clear-data-cancel-btn {
    background-color: #6c757d;
}

#clear-data-cancel-btn:hover {
    background-color: #5a6268;
}

#clear-data-confirm-btn {
    background-color: #c82333;
}

#clear-data-confirm-btn:hover:not(:disabled) {
    background-color: #bd2130;
}

#clear-data-confirm-btn:disabled {
    background-color: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.65;
}

/* --- Generic Confirmation Modal Styles --- */
.confirm-modal-content {
    background-color: #fff;
    padding: 25px 30px;
    border: 1px solid #ccc;
    width: 90%;
    max-width: 450px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
}

#confirm-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

#confirm-modal-close:hover,
#confirm-modal-close:focus {
    color: #333;
    text-decoration: none;
}

.confirm-modal-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3em;
    color: var(--text-color);
}

#confirm-modal-message {
    margin-bottom: 25px;
    line-height: 1.4;
    font-size: 1em;
}

.confirm-modal-actions {
    text-align: right;
    margin-top: 10px;
}

#confirm-modal-cancel,
#confirm-modal-ok {
    padding: 10px 18px;
    margin-left: 10px;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

#confirm-modal-cancel {
    background-color: #6c757d;
}

#confirm-modal-cancel:hover {
    background-color: #5a6268;
}

#confirm-modal-ok {
    background-color: #c82333;
}

#confirm-modal-ok:hover {
    background-color: #bd2130;
}
/* --- Dashboard Widget Styles --- */
#dashboard-widgets h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}
.widget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}
.widget-card {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 1rem;
    text-align: center;
}
.widget-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: #495057;
    font-weight: bold;
    text-transform: uppercase;
}
.widget-card p {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* --- GRID CLASSES FOR FORMS (Fixes !important hack) --- */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.grid-3-col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

/* --- HEADER LOGOUT BUTTON --- */
#header-logout-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #dc3545; /* Red */
    color: white;
    border: 1px solid #bd2130;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    z-index: 20; /* Above standard content, but below modals */
}
#header-logout-btn:hover {
    background-color: #c82333;
}

/* --- Button Color Overrides --- */
/*
|--------------------------------------------------------------------------
| MOBILE MEDIA QUERY - CONSOLIDATED (max-width: 768px)
|--------------------------------------------------------------------------
| Combined all @media (max-width: 768px) blocks into one for organization.
| Includes rules to hide #data-management and fix nav button alignment.
*/
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    main {
        padding: 0.5rem;
    }

    /* --- Hamburger Nav (Default State: Closed) --- */

    /* Hide standard links in the default mobile state */
    nav a {
        display: none;
    }

    /* HIDES the action buttons in the default (CLOSED) mobile state */
    .nav-button-action {
        display: none;
    }

    /* Show hamburger button */
    #hamburger-btn {
        display: block;
    }

    /* Hide the original desktop buttons in the main content */
    .desktop-btn {
        display: none !important;
    }
	
	#header-logout-btn {
        display: none;
    }

	/* Hide the Data Management section (User Request) */
    #data-management {
        display: none !important;
    }
    /* New Sidebar Controls */
    #content-container {
        display: block; /* Revert grid to single column */
        margin-top: 0;
    }
    #sidebar {
        display: none !important; /* Hide the entire sidebar on mobile */
    }
    /* End New Sidebar Controls */

    /* --- Hamburger Nav (Open State) --- */
    nav.mobile-nav-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px; /* Position it below the header */
        left: 0;
        width: 100%;
        background-color: #004c85; /* Darker blue background */
        padding: 0;
        z-index: 10; /* Ensure it's above main content */
		align-items: center;
    }

/* SHOWS links and buttons when menu is OPEN (Final Unification Fix) */
    nav.mobile-nav-open a,
	nav.mobile-nav-open .nav-button-action {
        display: block; /* Ensures full-width clickable area */
        width: 100%;
        padding: 1rem;
        border-bottom: 1px solid #005a9c;
        
        /* FINAL GUARANTEED OVERRIDES FOR FONT/ALIGNMENT */
        font-weight: bold !important; /* Forces link text to match button text boldness */
        font-size: 1rem !important; /* Forces link text to match button text size */
        text-decoration: none !important;
	}

    /* Remove bottom border from the last item */
    nav.mobile-nav-open a:last-child {
        border-bottom: none;
    }

	nav.mobile-nav-open .nav-button-action:last-child {
        border-bottom: none;
	}

    /* Form Grids */
    .grid-2-col,
    .grid-3-col {
        grid-template-columns: 1fr;
    }

    /* Tables - Enable horizontal scrolling */
    #history-table-section,
    #report-output-section,
    .paystub-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Modals - Bigger on mobile */
    .modal-content,
    .clear-modal-content,
    .confirm-modal-content,
    .info-modal-content {
        width: 95%;
        margin: 15% auto;
    }

    /* Full-Width Buttons */
    #employer-selection,
    #employee-selection,
	.form-actions {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    #employer-selection button,
    #employee-selection button,
    .form-actions button {
        width: 100%;
        padding: 0.9rem;
        margin: 0;
        box-sizing: border-box;
    }
	#history-mobile-actions {
        display: flex !important; /* Show on mobile */
        flex-direction: column;
        gap: 0.5rem;
        border: 1px solid var(--border-color);
        border-radius: 5px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        margin-top: 1rem;
    }
    #history-mobile-actions h2 {
        margin-top: 0;
        font-size: 1.2rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid var(--border-color);
    }
    #history-mobile-actions button {
        width: 100%;
        padding: 0.9rem;
        margin: 0; 
        box-sizing: border-box;
    }
}

/* --- Collapsible Form Section Styles --- */
.collapsible-section {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: #f7f7f7;
}

.section-toggle {
    width: 100%;
    text-align: left;
    background-color: #f7f7f7;
    color: var(--text-color);
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
    margin: 0; /* Override default button margin */
}

.section-toggle:hover {
    background-color: #e9e9e9;
    color: var(--primary-color);
}

.toggle-icon {
    transition: transform 0.3s;
    font-size: 0.9em;
}

.collapsible-content {
    padding: 0 1rem 1rem 1rem; /* Pad inside the wrapper */
}

.collapsible-content fieldset {
    border: none; /* Remove fieldset border inside the wrapper */
    margin-bottom: 0;
    padding: 0;
}

.collapsible-content input, .collapsible-content select {
    margin-bottom: 0.75rem; /* Tighten input spacing inside */
}

/* --- Final Visual Adjustments --- */

/* Ensures the border on the section container looks correct */
.collapsible-section .section-toggle:not(.collapsed) {
    border-bottom: 1px solid var(--border-color);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: var(--white);
}

/* Icon for Open State (Pointing down) */
.section-toggle:not(.collapsed) .toggle-icon {
    transform: rotate(180deg); 
}

/* Icon for Closed State (Pointing right/down) */
.section-toggle.collapsed .toggle-icon {
    transform: none; /* Reset for > arrow or ▼ arrow */
}
.collapsible-content {
    padding: 1rem 1rem 1rem 1rem; /* Pad inside the wrapper */
}

.grid-2-col,
.grid-3-col {
    grid-template-columns: 1fr;
}

    /* --- Tables --- */
    #history-table-section,
    #report-output-section,
    .paystub-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* --- Modals --- */
    .modal-content,
    .clear-modal-content,
    .confirm-modal-content,
    .info-modal-content {
        width: 95%;
        margin: 15% auto;
    }

    /* --- Full-Width Buttons --- */
    #data-management,
    #employer-selection,
    #employee-selection,
	.form-actions {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
	
    #data-management button,
    #employer-selection button,
    #employee-selection button,
    .form-actions button {
        width: 100%;
        padding: 0.9rem;
        margin: 0; /* Remove all margins for stacked buttons */
        box-sizing: border-box;
    }
}
/* --- Button Color Overrides --- */
#run-multi-payroll-btn {
    background-color: #28a745; /* Green */
}
#run-multi-payroll-btn:hover {
    background-color: #218838; /* Darker Green */
}

.form-actions .new-payrun-btn,
.edit-notice-buttons .new-payrun-btn {
    background-color: #dc3545; /* Red */
}
.form-actions .new-payrun-btn:hover,
.edit-notice-buttons .new-payrun-btn:hover {
    background-color: #c82333; /* Darker Red */
}

/* --- Payrun Edit Mode Banner Fix --- */
#edit-mode-notice {
    display: none; 
    margin: 1rem 0;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    
    /* Changed to info-blue background */
    background-color: #d1ecf1; 
    border: 1px solid #bee5eb;
    color: #0c5460;
    
    /* Flexbox rules to fix the layout */
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; 
    gap: 1rem;
}
#edit-mode-notice strong {
    color: #0c5460;
}
.edit-notice-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow buttons to wrap */
    gap: 0.5rem;
}
/* --- Employee Checklist Alignment Fix --- */
.employee-checklist-header {
    margin-bottom: 0.5rem; /* Add some space between employees */
}
.employee-checklist-header input[type="checkbox"] {
    width: auto; /* Override global 100% width */
    margin: 0; /* Override global margin */
    vertical-align: middle; /* Aligns checkbox with the middle of the text */
}
.employee-checklist-header label {
	display: inline-block;
    margin: 0 0 0 0.5rem; /* Remove bottom margin, add left margin */
    vertical-align: middle;
}
.employee-checklist-header .enter-pay-btn {
    display: none; /* Hide by default (JS will show it) */
    display: block; /* Make the button a block element */
    margin: 0.25rem 0 0 1.5rem; /* Top, Right, Bottom, Left - Indents it */
    width: auto; /* Override mobile 100% width */
    padding: 0.3rem 0.8rem; /* Make it smaller */
}

/* --- New Dashboard Styles --- */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.dashboard-header h2 {
    margin: 0;
}
.dashboard-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.dashboard-controls label {
    margin-bottom: 0; /* Override default label margin */
    font-weight: normal;
}
.dashboard-controls select {
    width: 100%;
    margin-bottom: 0; /* Override default select margin */
}

h3.widget-subheader {
    margin-top: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}
#dashboard-widgets .dashboard-controls {
    margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}
.compliance-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}
.tax-liabilities-widget, .deadlines-widget {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 1rem;
}
.compliance-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    align-items: center;
    margin-bottom: 1rem;
	margin-top: 1rem;
}
.compliance-controls label {
    margin-bottom: 0;
}
.compliance-controls select {
    width: 100%;
    margin-bottom: 0;
    flex-grow: 1;
}
#history-mobile-actions {
    display: none; /* Removed !important */
}

.nav-button-action {
    display: none; /* Keep hidden by default on desktop */
    background-color: transparent;
    color: var(--white);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    font-weight: bold;
}

.nav-button-action:hover {
    background-color: #007bb6; /* Slightly lighter blue for hover */
}

.deadlines-widget ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}
.deadlines-widget li {
    padding: 0.5rem 0.25rem;
    border-bottom: 1px solid #eee;
}
.deadlines-widget li:last-child {
    border-bottom: none;
}
.deadlines-widget li strong {
    color: var(--primary-color);
}
/* --- AUTHENTICATION STYLES --- */
.blur-background {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}

#auth-modal {
    position: fixed;
    z-index: 9999; /* Top level */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85); /* Darker background */
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    text-align: center;
}

.auth-content h2 {
    margin-top: 0;
    color: var(--primary-color);
}

.auth-content input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.auth-content button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    font-size: 1.1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.auth-content button:hover {
    background-color: #004c85;
}

.auth-link {
    display: block;
    margin-top: 15px;
    color: #005a9c;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.9rem;
}

.auth-error {
    color: #dc3545;
    margin-bottom: 10px;
    display: none;
    font-weight: bold;
}