/* PSD Appointments - Performance Supply Depot */
/* Brand Colors: Dark #0a0a1a, Electric Cyan #00E0FF, Performance Orange #FF7A00 */

:root {
    --bg-primary: #0a0a1a;
    --bg-secondary: #12122a;
    --bg-tertiary: #1a1a3a;
    --bg-card: #151530;
    
    --accent-cyan: #00E0FF;
    --accent-cyan-dim: rgba(0, 224, 255, 0.1);
    --accent-orange: #FF7A00;
    --accent-orange-dim: rgba(255, 122, 0, 0.1);
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0c0;
    --text-muted: #606080;
    
    --border-color: #2a2a4a;
    --border-hover: #3a3a6a;
    
    --success: #00ff88;
    --error: #ff4757;
    --warning: #ffa502;
    
    --shadow-glow: 0 0 20px rgba(0, 224, 255, 0.3);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Orbitron', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ========== Utility Classes ========== */
.hidden {
    display: none !important;
}

/* ========== Screen Management ========== */
.screen {
    min-height: 100vh;
    width: 100%;
}

/* ========== Auth Screen ========== */
.auth-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.auth-screen::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 20%, var(--accent-cyan-dim) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, var(--accent-orange-dim) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -20px) rotate(2deg); }
}

.auth-container {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-card);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--accent-cyan));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--text-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-header h1 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.input-group input {
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px var(--accent-cyan-dim);
}

.input-group input::placeholder {
    color: var(--text-muted);
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #00b8d4 100%);
    color: var(--bg-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.btn-outline:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background: var(--accent-cyan-dim);
}

.btn-icon {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loading {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: inline;
}

/* ========== Error Messages ========== */
.error-message {
    padding: 0.75rem 1rem;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid var(--error);
    border-radius: var(--radius-sm);
    color: var(--error);
    font-size: 0.875rem;
    display: none;
}

.error-message.visible {
    display: block;
}

.auth-footer {
    margin-top: 2rem;
    text-align: center;
}

.auth-footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== App Layout ========== */
.app-screen {
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.header-left .logo {
    justify-content: flex-start;
}

.header-left .logo-text {
    font-size: 1.25rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.app-main {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* ========== Sidebar ========== */
.sidebar {
    width: 260px;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: transparent;
    border: none;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.nav-item:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.nav-item.active {
    background: var(--accent-cyan-dim);
    color: var(--accent-cyan);
}

.nav-icon {
    font-size: 1.25rem;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.quick-stats {
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-cyan);
}

/* ========== Content Area ========== */
.content-area {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.view {
    display: none;
    animation: fadeIn 0.3s ease;
}

.view.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.view-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.view-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
}

/* ========== Calendar ========== */
.calendar-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.calendar-controls h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    min-width: 180px;
    text-align: center;
}

.view-toggle {
    display: flex;
    gap: 0.25rem;
    background: var(--bg-secondary);
    padding: 0.25rem;
    border-radius: var(--radius-md);
}

.view-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
}

.view-btn:hover {
    color: var(--text-primary);
}

.view-btn.active {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    font-weight: 600;
}

.calendar-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* Month View */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-header {
    background: var(--bg-secondary);
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.calendar-day {
    min-height: 100px;
    padding: 0.75rem;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.calendar-day:nth-child(7n) {
    border-right: none;
}

.calendar-day:hover {
    background: var(--bg-tertiary);
}

.calendar-day.other-month {
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.2);
}

.calendar-day.today {
    background: var(--accent-cyan-dim);
}

.calendar-day.today .day-number {
    color: var(--accent-cyan);
    font-weight: 700;
}

.calendar-day.selected {
    border-color: var(--accent-cyan);
    box-shadow: inset 0 0 0 2px var(--accent-cyan);
}

.calendar-day.has-slots::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-orange);
    border-radius: 50%;
}

.day-number {
    font-size: 0.9rem;
    font-weight: 500;
}

.slots-indicator {
    font-size: 0.7rem;
    color: var(--accent-orange);
    margin-top: 0.25rem;
}

/* Week View */
.week-view .calendar-grid {
    grid-template-columns: 60px repeat(7, 1fr);
}

.time-slot-label {
    padding: 0.5rem;
    text-align: right;
    font-size: 0.75rem;
    color: var(--text-muted);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.week-day-header {
    padding: 1rem;
    text-align: center;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.week-day-header .day-name {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.week-day-header .day-number {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.week-day-header.today .day-number {
    color: var(--accent-cyan);
}

.week-time-slot {
    padding: 0.5rem;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    min-height: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.week-time-slot:hover {
    background: var(--bg-tertiary);
}

.week-time-slot.available {
    background: var(--accent-cyan-dim);
}

.week-time-slot.available:hover {
    background: rgba(0, 224, 255, 0.2);
}

/* Day View */
.day-view .calendar-grid {
    display: flex;
    flex-direction: column;
}

.day-header {
    padding: 1.5rem;
    background: var(--bg-secondary);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.day-header h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.day-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
}

.day-slot-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.day-slot-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

.day-slot-card .time {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.day-slot-card .availability {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ========== Modal ========== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-card);
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 1.5rem;
}

.selected-datetime {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.selected-datetime span {
    display: block;
    color: var(--text-secondary);
}

.selected-datetime #selected-date-display {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--accent-cyan);
    margin-bottom: 0.25rem;
}

/* ========== Form Styles ========== */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px var(--accent-cyan-dim);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.time-slots {
    margin-bottom: 1.5rem;
}

.time-slots label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.slot-btn {
    padding: 0.625rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
}

.slot-btn:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.slot-btn.selected {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: var(--bg-primary);
    font-weight: 600;
}

.slot-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* ========== Bookings List ========== */
.bookings-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    transition: var(--transition);
}

.booking-card:hover {
    border-color: var(--border-hover);
}

.booking-date {
    text-align: center;
    min-width: 70px;
}

.booking-date .day {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-cyan);
    line-height: 1;
}

.booking-date .month {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.booking-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.booking-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.booking-status {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.booking-status.confirmed {
    background: rgba(0, 255, 136, 0.1);
    color: var(--success);
}

.booking-status.pending {
    background: rgba(255, 165, 2, 0.1);
    color: var(--warning);
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* ========== Leads Search ========== */
.search-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.search-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.search-input-group input {
    flex: 1;
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
}

.search-input-group input:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

.leads-results {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lead-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.lead-card:hover {
    border-color: var(--accent-cyan);
}

.lead-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.lead-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.lead-actions {
    display: flex;
    gap: 0.5rem;
}

/* ========== Toast Notifications ========== */
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    animation: toastSlide 0.3s ease;
    max-width: 400px;
    box-shadow: var(--shadow-card);
}

@keyframes toastSlide {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast.success {
    background: var(--bg-card);
    border-left: 4px solid var(--success);
    color: var(--text-primary);
}

.toast.error {
    background: var(--bg-card);
    border-left: 4px solid var(--error);
    color: var(--text-primary);
}

.toast.info {
    background: var(--bg-card);
    border-left: 4px solid var(--accent-cyan);
    color: var(--text-primary);
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
    .sidebar {
        width: 220px;
    }
    
    .booking-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .booking-date {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .booking-date .day {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .app-header {
        padding: 1rem;
    }
    
    .header-right .user-info span {
        display: none;
    }
    
    .app-main {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 1rem;
    }
    
    .nav-menu {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .nav-item {
        white-space: nowrap;
    }
    
    .nav-item span:not(.nav-icon) {
        display: none;
    }
    
    .sidebar-footer {
        display: none;
    }
    
    .content-area {
        padding: 1rem;
    }
    
    .view-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .calendar-controls {
        width: 100%;
        justify-content: space-between;
    }
    
    .calendar-day {
        min-height: 60px;
        padding: 0.5rem;
    }
    
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .auth-container {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .calendar-controls h3 {
        font-size: 0.9rem;
        min-width: 120px;
    }
    
    .view-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .slots-grid {
        grid-template-columns: 1fr;
    }
    
    .search-input-group {
        flex-direction: column;
    }
}

/* ========== Scrollbar Styling ========== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-hover);
}

/* ========== Loading States ========== */
.skeleton {
    background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-secondary) 50%, var(--bg-tertiary) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ========== Selection Styles ========== */
::selection {
    background: var(--accent-cyan);
    color: var(--bg-primary);
}
