/* -------------------------------------------------------------
 * VISTAR - Sandwich and Fries Cafe POS & Billing System
 * Location: Chhatrapati Sambhajinagar (Aurangabad), Maharashtra
 * High-Density Compact 80% Zoom Standard at 100% Viewport
 * ------------------------------------------------------------- */

:root {
    --bg-main: #F8FAFC;
    --bg-sidebar: #0B172A;
    --bg-card: #FFFFFF;
    --bg-card-alt: #F1F5F9;
    --primary: #0284C7;
    --primary-hover: #0369A1;
    --primary-glow: rgba(2, 132, 199, 0.18);
    --accent-emerald: #059669;
    --accent-amber: #D97706;
    --accent-purple: #6366F1;
    --accent-red: #DC2626;
    --text-bright: #0F172A;
    --text-muted: #475569;
    --text-dim: #64748B;
    --border-color: #E2E8F0;
    --border-highlight: rgba(2, 132, 199, 0.35);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

html {
    font-size: 13px; /* High Density 80% Zoom Standard */
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-bright);
    line-height: 1.45;
    overflow-x: hidden;
}

.admin-app {
    display: flex;
    min-height: 100vh;
}

/* Sidebar - Deep Ocean Navy Theme */
.sidebar {
    width: 235px;
    background: linear-gradient(180deg, #0B172A 0%, #0F253E 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    padding: 1.1rem 0.85rem;
    position: fixed;
    height: 100vh;
    z-index: 100;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.2);
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-info h2 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.06em;
    line-height: 1.1;
}

.brand-info p {
    font-size: 0.62rem;
    font-weight: 700;
    color: #38BDF8;
    letter-spacing: 0.08em;
}

/* Cafe Location Badge */
.client-gst-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 12px;
    padding: 0.65rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.1rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.client-gst-badge i {
    font-size: 1.1rem;
    color: #38BDF8;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.3);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-gst-badge strong {
    display: block;
    font-size: 0.74rem;
    font-weight: 800;
    color: #FFFFFF;
}

.client-gst-badge span {
    font-size: 0.65rem;
    color: #34D399;
    font-weight: 700;
}

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

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0.7rem;
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.18s ease;
}

.nav-icon-box {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: all 0.18s ease;
}

.nav-icon-box.blue { background: rgba(56, 189, 248, 0.15); color: #38BDF8; }
.nav-icon-box.emerald { background: rgba(52, 211, 153, 0.15); color: #34D399; }
.nav-icon-box.purple { background: rgba(165, 180, 252, 0.15); color: #A5B4FC; }
.nav-icon-box.amber { background: rgba(251, 191, 36, 0.15); color: #FBBF24; }
.nav-icon-box.teal { background: rgba(45, 212, 191, 0.15); color: #2DD4BF; }
.nav-icon-box.rose { background: rgba(251, 113, 133, 0.15); color: #FB7185; }

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.nav-item:hover .nav-icon-box { transform: scale(1.08); }

.nav-item.active {
    background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
    color: #FFFFFF;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(2, 132, 199, 0.4);
}

.nav-item.active .nav-icon-box {
    background: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
}

.sidebar-footer {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vybill-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 0.45rem 0.75rem;
    color: #CBD5E1;
    font-size: 0.75rem;
    font-weight: 600;
}

.vybill-tag strong { color: #38BDF8; font-weight: 800; }

/* Main Content Area */
.main-content {
    margin-left: 235px;
    flex: 1;
    padding: 1.25rem 1.5rem;
    min-height: 100vh;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #E2E8F0;
}

.topbar-title h1 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: #0F172A;
}

.topbar-title p {
    font-size: 0.82rem;
    color: #64748B;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

#btn-quick-invoice {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    color: #FFFFFF;
    font-weight: 800;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
    border: none;
    cursor: pointer;
}

#btn-quick-invoice:hover {
    background: linear-gradient(135deg, #047857 0%, #34D399 100%);
    transform: translateY(-1px) scale(1.02);
}

.user-pill {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #0F172A;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

/* Tab Pages */
.tab-page { display: none; }
.tab-page.active { display: block; animation: fadeIn 0.22s ease; }

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

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.metric-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    padding: 1rem 1.15rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    border-color: rgba(2, 132, 199, 0.4);
}

.metric-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.metric-card.gold .metric-icon { background: rgba(217, 119, 6, 0.12); color: var(--accent-amber); border: 1px solid rgba(217, 119, 6, 0.25); }
.metric-card.blue .metric-icon { background: rgba(2, 132, 199, 0.12); color: var(--primary); border: 1px solid rgba(2, 132, 199, 0.25); }
.metric-card.purple .metric-icon { background: rgba(99, 102, 241, 0.12); color: var(--accent-purple); border: 1px solid rgba(99, 102, 241, 0.25); }
.metric-card.red .metric-icon { background: rgba(220, 38, 38, 0.12); color: var(--accent-red); border: 1px solid rgba(220, 38, 38, 0.25); }

.metric-info .label { font-size: 0.75rem; color: #64748B; font-weight: 600; }
.metric-info .value { font-size: 1.35rem; font-weight: 800; color: #0F172A; margin: 0.1rem 0; }
.metric-info .sub { font-size: 0.7rem; font-weight: 600; }

/* Content Cards */
.content-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    padding: 1.25rem 1.4rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.25rem; }
.mt-3 { margin-top: 1rem; }
.flex-between { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }

/* Form Controls & Dropdowns */
label { display: block; font-size: 0.78rem; font-weight: 600; color: #475569; margin-bottom: 0.3rem; }

input, select, textarea {
    width: 100%;
    padding: 0.55rem 0.75rem;
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    border-radius: var(--radius-sm);
    color: #0F172A;
    font-family: inherit;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #0284C7;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

select option {
    background-color: #FFFFFF !important;
    color: #0F172A !important;
    font-weight: 600;
    padding: 8px 12px;
}

/* CAFE POS CATEGORY FILTER PILLS & MENU TILES */
.cafe-category-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-bottom: 12px;
    scrollbar-width: thin;
}

.cat-pill {
    padding: 6px 14px;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.18s ease;
}

.cat-pill:hover {
    background: #E2E8F0;
    color: #0F172A;
}

.cat-pill.active {
    background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
    color: #FFFFFF;
    border-color: #0284C7;
    box-shadow: 0 3px 10px rgba(2, 132, 199, 0.25);
}

/* Menu Grid Tiles */
.cafe-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 10px;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 4px;
}

.menu-tile {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    padding: 11px;
    cursor: pointer;
    transition: all 0.18s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.menu-tile:hover {
    border-color: #0284C7;
    background: #F0F9FF;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.12);
}

.menu-tile-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 6px;
}

.menu-tile-name {
    font-size: 0.88rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.25;
}

.menu-tile-tag {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    background: #ECFDF5;
    color: #059669;
    border: 1px solid #A7F3D0;
    white-space: nowrap;
}

.menu-tile-price {
    font-size: 1rem;
    font-weight: 800;
    color: #059669;
    margin-top: 4px;
}

.menu-tile-add {
    font-size: 0.72rem;
    font-weight: 700;
    color: #0284C7;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* POS Builder Split Layout */
.builder-layout {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 1.25rem;
    align-items: start;
}

.sticky-summary-card {
    position: sticky;
    top: 80px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    padding: 1.2rem;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

.invoice-summary-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #E2E8F0;
}

.inv-badge-pill {
    padding: 0.25rem 0.65rem;
    background: rgba(2, 132, 199, 0.1);
    border: 1px solid rgba(2, 132, 199, 0.3);
    color: #0284C7;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
}

.grand-total-highlight {
    background: #ECFDF5;
    border: 1.5px solid #10B981;
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    margin: 0.5rem 0;
}

.grand-total-highlight h2 {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: #047857;
    font-weight: 800;
}

.btn-generate-bill {
    background: linear-gradient(135deg, #059669, #047857);
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 800;
    padding: 0.85rem;
    border-radius: 8px;
    border: none;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.3);
}

.btn-generate-bill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(5, 150, 105, 0.4);
}

/* Data Tables */
.pretty-table, .data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.data-table th {
    background: #F8FAFC;
    color: #475569;
    text-align: left;
    padding: 0.65rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1.5px solid #E2E8F0;
}

.data-table td {
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid #E2E8F0;
    color: #0F172A;
}

.data-table tbody tr:hover { background: #F8FAFC; }

/* Status Badges */
.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
}

.badge-status.paid { background: #ECFDF5; color: #047857; border: 1px solid #A7F3D0; }
.badge-status.pending { background: #FFFBEB; color: #B45309; border: 1px solid #FDE68A; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(2, 132, 199, 0.3);
}

.btn-primary:hover { background: linear-gradient(135deg, #38BDF8 0%, #0284C7 100%); }

.btn-secondary {
    background: #F1F5F9;
    border: 1px solid #CBD5E1;
    color: #0F172A;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF !important;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn-sm { padding: 0.3rem 0.65rem; font-size: 0.75rem; }
.btn-lg { padding: 0.7rem 1.4rem; font-size: 0.92rem; }
.full-width { width: 100%; }

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(6px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active { display: flex; }

.modal-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    width: 90%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
}

.modal-card.modal-lg.print-modal-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    max-width: 920px !important;
    width: 95% !important;
}

.print-modal-card .modal-header {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #FFFFFF;
    padding: 0.85rem 1.2rem;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    border: 1px solid #334155;
    border-bottom: 2px solid #0284C7;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Toast Notifications */
#toast-container {
    position: fixed;
    bottom: 20px; right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    animation: slideIn 0.2s ease;
}

.toast-success { background: #059669; }
.toast-info { background: #0284C7; }
.toast-warning { background: #D97706; }
.toast-error { background: #DC2626; }

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

/* PRINTABLE THERMAL RECEIPT / TAX INVOICE FORMAT */
.printable-invoice {
    background: #ffffff !important;
    color: #0F172A !important;
    padding: 1.25rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1.35;
    border: 2px solid #0284C7 !important;
    box-sizing: border-box;
}

@media print {
    body * { visibility: hidden; }
    .printable-invoice, .printable-invoice * { visibility: visible; }
    .printable-invoice {
        position: absolute;
        left: 0; top: 0; width: 100%;
        border: none !important;
    }
}

/* -------------------------------------------------------------
 * RESPONSIVE MOBILE & TABLET STYLES
 * ------------------------------------------------------------- */
.mobile-menu-toggle {
    display: none;
    background: #F1F5F9;
    border: 1px solid #CBD5E1;
    color: #0F172A;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: #0284C7;
    color: #FFFFFF;
    border-color: #0284C7;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 900;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* Tablet & Mobile Screens (<= 992px) */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .sidebar.mobile-open {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
        padding: 1rem;
        width: 100%;
    }

    .builder-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sticky-summary-card {
        position: static;
        width: 100%;
    }

    .topbar {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .topbar-right {
        width: 100%;
        justify-content: space-between;
    }
}

/* Mobile Phones (<= 640px) */
@media (max-width: 640px) {
    html {
        font-size: 12px;
    }

    .topbar-title h1 {
        font-size: 1.2rem;
    }

    .topbar-title p {
        font-size: 0.72rem;
    }

    .metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
    }

    .metric-card {
        padding: 0.75rem 0.85rem;
        gap: 0.65rem;
    }

    .metric-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .metric-info .value {
        font-size: 1.1rem;
    }

    .cafe-menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
        gap: 8px;
        max-height: 320px;
    }

    .menu-tile {
        padding: 8px;
    }

    .menu-tile-name {
        font-size: 0.8rem;
    }

    .menu-tile-price {
        font-size: 0.9rem;
    }

    .form-grid-2, .form-grid-3 {
        grid-template-columns: 1fr !important;
        gap: 0.5rem;
    }

    .print-modal-card .modal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .print-modal-actions {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .printable-invoice {
        padding: 10px !important;
        font-size: 10px !important;
    }

    #toast-container {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .toast {
        width: 100%;
        text-align: center;
    }
}

/* -------------------------------------------------------------
 * VISTAR STANDALONE FULL-PAGE LOGIN SCREEN STYLES
 * ------------------------------------------------------------- */
.login-page-wrapper {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: linear-gradient(135deg, #0B172A 0%, #0F253E 100%);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-sizing: border-box;
}

.login-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 2.25rem 2rem;
    width: 100%;
    max-width: 410px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: loginFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes loginFadeIn {
    from { opacity: 0; transform: scale(0.94); }
    to { opacity: 1; transform: scale(1); }
}

.login-brand {
    text-align: center;
    margin-bottom: 1.5rem;
}

.login-logo {
    height: 72px;
    width: auto;
    background: #FFFFFF;
    border-radius: 50%;
    padding: 4px;
    border: 2px.5px solid #0284C7;
    margin-bottom: 10px;
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.25);
}

.login-brand h2 {
    font-family: 'Times New Roman', Georgia, serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: #0F172A;
    margin: 0;
    letter-spacing: 1.5px;
}

.login-subtitle {
    font-size: 0.72rem;
    font-weight: 800;
    color: #059669;
    letter-spacing: 1px;
    margin: 2px 0 10px 0;
}

.login-badge {
    display: inline-block;
    background: #F0F9FF;
    border: 1px solid #BAE6FD;
    color: #0284C7;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.login-form {
    margin-bottom: 1.25rem;
}

.login-footer {
    text-align: center;
    font-size: 0.72rem;
    color: #64748B;
    border-top: 1px solid #E2E8F0;
    padding-top: 1rem;
}

.user-pill {
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-pill:hover {
    border-color: #DC2626;
    color: #DC2626;
    background: #FEF2F2;
}
