/* ========================================================================== */
/* 🏥 Premium Standalone OHN Platform Styles - Full Synthesized Edition       */
/* ========================================================================== */

:root {
    --bg-cream: #faf7f2;            /* 溫暖象牙杏 */
    --text-charcoal: #1e293b;       /* 質感黑灰色 */
    --text-cream-muted: #64748b;    /* 質感灰輔助字 */
    --border-cream: rgba(226, 218, 201, 0.7); /* 透明邊框 */
    --card-bg-glass: #ffffff;       /* 潔淨白 */
    --accent-olive: #65a30d;        /* 橄欖綠主焦點色 */
    --accent-olive-hover: #4d7c0f;  /* 橄欖綠 Hover */
    --accent-olive-light: #f7fee7;  /* 淺綠對比底色 */
    --accent-amber: #d97706;        /* 琥珀警告色 */
    --card-shadow: 0 4px 15px -3px rgba(46, 37, 26, 0.03), 0 1px 2px rgba(0, 0, 0, 0.01);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #f3ece0; /* Premium page wrapper background */
    color: var(--text-charcoal);
    line-height: 1.5;
    padding: 1.5rem;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(101, 163, 13, 0.2);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(101, 163, 13, 0.4);
}

/* ========================================================================== */
/* 1. Layout Framework (SaaS Sidebar & Content Pane)                         */
/* ========================================================================== */
.nurse-dashboard-layout {
    display: flex;
    width: 100%;
    max-width: 1350px;
    height: 870px;
    background-color: var(--bg-cream);
    border: 1px solid var(--border-cream);
    border-radius: 12px;
    box-shadow: 0 20px 45px -15px rgba(46, 37, 26, 0.1);
    overflow: hidden;
}

.nurse-sidebar {
    width: 235px;
    background-color: #ffffff;
    border-right: 1px solid var(--border-cream);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    padding: 1.8rem 1rem;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 1.5rem;
}

.sidebar-logo .logo-icon {
    font-size: 2.1rem;
}

.sidebar-logo h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-charcoal);
}

.sidebar-logo p {
    margin: 0;
    font-size: 0.72rem;
    color: var(--text-cream-muted);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    padding: 0.78rem 1rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-cream-muted);
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
}

.sidebar-nav-item:hover {
    background-color: #fafaf9;
    color: var(--text-charcoal);
}

.sidebar-nav-item.active {
    background-color: var(--accent-olive-light);
    color: var(--accent-olive);
    border-left-color: var(--accent-olive);
}

.nurse-main-content {
    flex-grow: 1;
    padding: 2rem;
    overflow-y: auto;
    background-color: var(--bg-cream);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nurse-subview {
    display: none;
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
}

.nurse-subview.active {
    display: block;
    opacity: 1;
}

/* ========================================================================== */
/* 2. Cards, Panels, Upload Zones                                            */
/* ========================================================================== */
.platform-card {
    background-color: var(--card-bg-glass);
    border: 1px solid var(--border-cream);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
    margin-bottom: 1.5rem;
    transition: transform 0.15s ease;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px dashed rgba(226, 218, 201, 0.7);
    padding-bottom: 0.6rem;
    margin-bottom: 1rem;
}

.panel-header h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-charcoal);
    margin: 0;
}

.panel-icon {
    font-size: 1.3rem;
}

.subtitle {
    font-size: 0.82rem;
    color: var(--text-cream-muted);
    margin-bottom: 1.2rem;
}

.upload-zone {
    border: 2px dashed rgba(101, 163, 13, 0.3);
    border-radius: 8px;
    padding: 2.2rem;
    text-align: center;
    background-color: #fafafa;
    transition: all 0.2s ease;
}

.upload-zone.dragover, .upload-zone:hover {
    border-color: var(--accent-olive);
    background-color: var(--accent-olive-light);
}

.upload-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.upload-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-charcoal);
    margin-bottom: 0.2rem;
}

.upload-subtitle {
    font-size: 0.75rem;
    color: var(--text-cream-muted);
    margin-bottom: 0.8rem;
}

/* ========================================================================== */
/* 3. Dashboard Layout & Widgets                                              */
/* ========================================================================== */
.todo-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.todo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fafaf9;
    border: 1px solid rgba(226, 218, 201, 0.5);
    border-radius: 6px;
    padding: 0.6rem 0.8rem;
    text-align: left;
}

.todo-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-charcoal);
}

.todo-desc {
    font-size: 0.75rem;
    color: var(--text-cream-muted);
    margin-top: 0.15rem;
}

.todo-check-btn {
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: var(--accent-olive);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.75rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.todo-check-btn:hover {
    background-color: var(--accent-olive);
    color: #ffffff;
}

.hazard-tag-btn {
    background-color: #ffffff;
    border: 1px solid var(--border-cream);
    padding: 0.35rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-cream-muted);
    transition: all 0.2s ease;
}

.hazard-tag-btn:hover {
    background-color: #fafaf9;
    color: var(--text-charcoal);
}

.hazard-tag-btn.active {
    background-color: var(--accent-olive-light);
    border-color: #d9f99d;
    color: var(--accent-olive);
    box-shadow: 0 2px 5px rgba(101, 163, 13, 0.05);
}

/* ========================================================================== */
/* 4. Table and select styling                                                */
/* ========================================================================== */
.table-scroll {
    overflow-x: auto;
    border-radius: 6px;
    border: 1px solid var(--border-cream);
}

.cream-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
    background-color: #ffffff;
}

.cream-table th {
    background-color: #fafaf9;
    border-bottom: 2px solid var(--border-cream);
    padding: 0.7rem 0.8rem;
    text-align: left;
    font-weight: 700;
}

.cream-table td {
    padding: 0.7rem 0.8rem;
    border-bottom: 1px solid #f1f5f9;
}

.cream-table tbody tr {
    transition: background-color 0.1s ease;
}

.cream-table tbody tr:hover {
    background-color: var(--accent-olive-light);
}

.cream-table tbody tr.active-row {
    background-color: #f0fdf4 !important;
    border-left: 4px solid var(--accent-olive);
}

.cream-select {
    font-size: 0.78rem;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
    background: #fff;
    cursor: pointer;
    color: var(--text-charcoal);
    outline: none;
    font-weight: 600;
}

.cream-select:focus {
    border-color: var(--accent-olive);
}

/* ========================================================================== */
/* 5. Buttons and badges                                                      */
/* ========================================================================== */
.cream-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.55rem 1.2rem;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease;
    border: 1px solid transparent;
}

.cream-btn.primary {
    background-color: var(--accent-olive);
    color: #ffffff;
    box-shadow: 0 2px 5px rgba(101, 163, 13, 0.1);
}

.cream-btn.primary:hover {
    background-color: var(--accent-olive-hover);
}

.cream-btn.outline {
    background-color: transparent;
    border-color: var(--border-cream);
    color: var(--text-charcoal);
}

.cream-btn.outline:hover {
    background-color: #f5f5f4;
    border-color: var(--text-charcoal);
}

.cream-btn.small {
    padding: 0.25rem 0.6rem;
    font-size: 0.72rem;
    border-radius: 4px;
}

.badge {
    display: inline-block;
    padding: 0.18rem 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 4px;
}

.badge-high {
    background-color: #fee2e2;
    color: #ef4444;
    border: 1px solid #fca5a5;
}

.badge-medium {
    background-color: #ffedd5;
    color: #f97316;
    border: 1px solid #fed7aa;
}

.badge-low {
    background-color: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
}

.status-msg {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    display: none;
}

.status-msg.loading {
    display: block;
    background-color: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
    font-family: monospace;
}

.status-msg.success {
    display: block;
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

/* ========================================================================== */
/* 6. Case Detail & Physiological Marker Grids                                */
/* ========================================================================== */
.physiological-markers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.marker-card {
    background-color: #fafafa;
    border: 1px solid var(--border-cream);
    border-radius: 6px;
    padding: 0.6rem 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: left;
}

.marker-card.abnormal {
    border-color: #fca5a5;
    background-color: #fff5f5;
}

.marker-title {
    font-size: 0.72rem;
    color: var(--text-cream-muted);
    font-weight: 700;
}

.marker-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-charcoal);
    font-family: monospace;
}

.marker-card.abnormal .marker-value {
    color: #dc2626;
}

.marker-badge {
    font-size: 0.62rem;
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    width: fit-content;
    font-weight: bold;
}

.marker-badge.abnormal {
    background-color: #fee2e2;
    color: #ef4444;
}

.marker-badge.normal {
    background-color: #ecfdf5;
    color: #10b981;
}

/* ========================================================================== */
/* 7. Subview Grids & Layouts                                                 */
/* ========================================================================== */
.cases-layout-grid {
    display: grid;
    grid-template-columns: 1.62fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.cases-left-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cases-right-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 0.5rem;
}

.meta-details {
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
    background-color: #fafafa;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(226, 218, 201, 0.4);
    text-align: left;
}

.meta-details p {
    margin-bottom: 0;
}

/* AI Exposure Card */
.ai-exposure-card {
    padding: 1rem;
    background-color: #fafaf9;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.exposure-progress-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.exposure-label {
    font-size: 0.72rem;
    color: #78716c;
    width: 80px;
    flex-shrink: 0;
    font-weight: 600;
}

.exposure-bar-bg {
    flex: 1;
    height: 6px;
    background-color: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.exposure-bar-fill {
    height: 100%;
    border-radius: 3px;
}

.exposure-value {
    font-size: 0.72rem;
    font-weight: bold;
    width: 30px;
    text-align: right;
}

.exposure-footer {
    font-size: 0.72rem;
    color: #64748b;
    margin-top: 0.6rem;
    display: flex;
    justify-content: space-between;
    border-top: 1px dashed #cbd5e1;
    padding-top: 0.4rem;
}

/* SVG Chart */
.svg-chart-container {
    width: 100%;
    height: 180px;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    font-size: 0.75rem;
    color: var(--text-cream-muted);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.legend-color {
    width: 12px;
    height: 6px;
    border-radius: 3px;
    display: inline-block;
}

.legend-color.sbp { background-color: #b45309; }
.legend-color.dbp { background-color: #65a30d; }

/* Survey detail list */
.survey-detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.82rem;
}

.survey-detail-list li {
    padding: 0.6rem 0.8rem;
    background-color: #fafaf9;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
}

.survey-detail-list li strong {
    color: #475569;
}

/* Timeline */
.consultation-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-height: 200px;
    overflow-y: auto;
    padding-left: 0.5rem;
}

.timeline-item {
    position: relative;
    padding-left: 1.2rem;
    border-left: 1.5px solid var(--border-cream);
    font-size: 0.8rem;
    padding-bottom: 0.4rem;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: -5px;
    top: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-olive);
    border: 1px solid #fff;
}

.timeline-time {
    color: var(--text-cream-muted);
    font-weight: 500;
    margin-bottom: 0.2rem;
}

/* Schedule View Layout (Forms and Visual Calendar Grid) */
.schedule-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 1.5rem;
    align-items: start;
}

.scheduler-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-cream-muted);
}

.cream-input {
    background-color: #ffffff;
    border: 1px solid rgba(203, 213, 225, 0.8);
    border-radius: 6px;
    padding: 0.45rem 0.75rem;
    font-size: 0.85rem;
    outline: none;
    color: var(--text-charcoal);
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.cream-input:focus {
    border-color: var(--accent-olive);
}

textarea.cream-input {
    resize: vertical;
}

/* Visual Calendar Grid */
.calendar-wrapper {
    background-color: #ffffff;
    border: 1px solid var(--border-cream);
    border-radius: 6px;
    padding: 0.8rem;
}

.calendar-day-cell {
    background-color: #ffffff;
    min-height: 52px;
    padding: 0.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.calendar-day-cell.other-month {
    background-color: #f8fafc;
}

.calendar-day-num {
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
    text-align: right;
    padding-right: 0.2rem;
}

.calendar-day-cell.today .calendar-day-num {
    color: var(--accent-olive);
    background-color: var(--accent-olive-light);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    float: right;
}

.calendar-task-tag {
    font-size: 0.64rem;
    padding: 0.1rem 0.25rem;
    border-radius: 3px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    cursor: pointer;
}

.calendar-task-tag.consultation {
    background-color: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

.calendar-task-tag.physician {
    background-color: #fef2f2;
    color: #dc2626;
    border: 1px solid #fca5a5;
}

.calendar-task-tag.worksite {
    background-color: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

/* ========================================================================== */
/* 8. Reports Layout                                                         */
/* ========================================================================== */
.reports-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1.5rem;
    min-height: 250px;
}

.reports-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-right: 1px dashed rgba(226, 218, 201, 0.7);
    padding-right: 1rem;
}

.report-select-btn {
    text-align: left;
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    border: 1px solid transparent;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-cream-muted);
    transition: all 0.2s ease;
}

.report-select-btn:hover {
    background-color: #f5f5f4;
    color: var(--text-charcoal);
}

.report-select-btn.active {
    background-color: var(--accent-olive-light);
    border-color: #d9f99d;
    color: var(--accent-olive);
}

.report-view-panel {
    padding: 0.2rem;
}

.report-header {
    margin-bottom: 1.2rem;
    text-align: left;
}

.report-header p {
    font-size: 0.85rem;
    color: var(--text-cream-muted);
}

/* ========================================================================== */
/* 9. Ouro AI Copilot Panel                                                   */
/* ========================================================================== */
.ai-copilot-container {
    background-color: #ffffff;
    border: 1px solid var(--border-cream);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(46, 37, 26, 0.03);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ai-copilot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 0.8rem;
    font-weight: 700;
    color: var(--text-charcoal);
    font-size: 0.95rem;
}

.ai-status-indicator {
    font-size: 0.72rem;
    color: #15803d;
    font-weight: normal;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.status-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #22c55e;
    border-radius: 50%;
}

.ai-copilot-recommendation-box {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 1.2rem;
    color: #14532d;
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: left;
}

.ai-copilot-recommendation-box h4 {
    color: #14532d !important;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.ai-copilot-recommendation-box ul {
    margin: 0.5rem 0;
    padding-left: 1.2rem;
}

.ai-copilot-recommendation-box li {
    margin-bottom: 0.4rem;
}

.ai-copilot-recommendation-box strong {
    color: #166534;
}

.ai-copilot-btn-group {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.ai-copilot-btn-group .cream-btn {
    flex: 1;
    font-size: 0.82rem;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-weight: 700;
}

.ai-copilot-btn-group .cream-btn.primary {
    background-color: #65a30d;
    color: #ffffff;
    border: none;
}

.ai-copilot-btn-group .cream-btn.primary:hover {
    background-color: #4d7c0f;
}

.ai-copilot-btn-group .cream-btn.outline {
    background-color: #ffffff;
    border: 1px solid var(--border-cream);
    color: var(--text-charcoal);
}

.ai-copilot-btn-group .cream-btn.outline:hover {
    background-color: #fafaf9;
    border-color: var(--text-charcoal);
}

.ai-reasoning-console {
    background-color: #1e1e1e;
    border: 1px solid #334155;
    border-radius: 6px;
    font-family: Consolas, Monaco, 'Andale Mono', monospace;
    color: #34d399;
    padding: 0.8rem;
    margin-top: 0.2rem;
    font-size: 0.75rem;
    line-height: 1.45;
    display: none;
    max-height: 180px;
    overflow-y: auto;
    text-align: left;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
}

.ai-footer-note {
    font-size: 0.65rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 0.2rem;
    line-height: 1.2;
}

/* ========================================================================== */
/* 10. Modal Overlays                                                         */
/* ========================================================================== */
.cream-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(45, 55, 72, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.cream-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cream-modal-card {
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    width: 95%;
    max-width: 580px;
    box-shadow: 0 20px 40px -15px rgba(46, 37, 26, 0.15);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cream-modal-overlay.active .cream-modal-card {
    transform: translateY(0);
}

.cream-modal-header {
    background-color: #fafaf9;
    border-bottom: 1px solid #cbd5e1;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cream-modal-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-charcoal);
}

.cream-modal-body {
    padding: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
}

.cream-modal-footer {
    background-color: #fafaf9;
    border-top: 1px solid #cbd5e1;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.compliance-disclaimer {
    font-size: 0.72rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    border-top: 1px dashed #cbd5e1;
    line-height: 1.5;
}

/* Auth Login Page Overlay */
.auth-login-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #f3ece0;
    background-image: radial-gradient(circle at center, #ffffff 0%, #f3ece0 100%);
    background-size: cover;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

