/* ============================================
   Clinic Management System - Modern Styles
   ============================================ */

:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --success: #16a34a;
    --danger: #dc2626;
    --warning: #f59e0b;
    --info: #0891b2;
    --teal: #14b8a6;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --sidebar-width: 250px;
    --topbar-height: 60px;
    --border-radius: 10px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
}

* { box-sizing: border-box; }

html, body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--gray-50);
    color: var(--gray-800);
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

/* ============================================
   LOGIN PAGE
   ============================================ */
.login-body {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d6efd 0%, #14b8a6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-wrapper {
    width: 100%;
    max-width: 420px;
}

.login-card {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.login-brand {
    text-align: center;
    margin-bottom: 30px;
}

.login-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd 0%, #14b8a6 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(13,110,253,0.3);
}

.login-brand h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--gray-900);
}

.login-brand p {
    color: var(--gray-500);
    margin: 0;
    font-size: 14px;
}

.login-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

/* ============================================
   APP LAYOUT
   ============================================ */
.app-wrapper {
    display: flex;
    min-height: 100vh;
}

.app-sidebar {
    width: var(--sidebar-width);
    background: white;
    border-right: 1px solid var(--gray-200);
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.sidebar-brand {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0d6efd 0%, #14b8a6 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.brand-name {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 15px;
    line-height: 1.2;
}

.brand-tag {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-nav {
    padding: 12px 8px;
    flex-grow: 1;
}

.nav-heading {
    padding: 12px 12px 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.15s ease;
}

.nav-item:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.nav-item.active {
    background: linear-gradient(90deg, rgba(13,110,253,0.08) 0%, rgba(20,184,166,0.05) 100%);
    color: var(--primary);
    font-weight: 600;
}

.nav-item i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.sidebar-footer {
    padding: 12px 8px;
    border-top: 1px solid var(--gray-200);
}

.sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.sidebar-backdrop.show { display: block; }

/* Main content */
.app-main {
    flex-grow: 1;
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.app-topbar {
    height: var(--topbar-height);
    background: white;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.topbar-title h1 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--gray-800);
}

.topbar-right {
    margin-left: auto;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-info {
    text-align: right;
    line-height: 1.2;
}

.user-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-800);
}

.user-role {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd 0%, #14b8a6 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.user-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd 0%, #14b8a6 100%);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

.btn-icon {
    background: transparent;
    border: none;
    padding: 8px 12px;
    font-size: 20px;
    color: var(--gray-700);
    border-radius: 8px;
}

.btn-icon:hover { background: var(--gray-100); }

.app-content {
    padding: 20px;
    flex-grow: 1;
}

.flash-container {
    padding: 12px 20px 0;
}

/* ============================================
   TELLER LAYOUT (POS)
   ============================================ */
.teller-body {
    background: var(--gray-50);
    min-height: 100vh;
}

.teller-topbar {
    background: white;
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.teller-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.teller-brand i {
    font-size: 24px;
    color: var(--primary);
}

.teller-brand .brand-name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
}

.teller-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-info-mini {
    font-size: 13px;
    text-align: right;
    line-height: 1.2;
}

.user-info-mini small {
    color: var(--gray-500);
    font-size: 11px;
}

.teller-main {
    padding: 16px 12px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   POS INCOME SCREEN
   ============================================ */
.pos-container { padding: 4px; }

.pos-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 16px;
}

.pos-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.pos-label.small {
    font-size: 12px;
    text-transform: none;
    letter-spacing: 0;
    color: var(--gray-600);
    font-weight: 500;
}

.pos-input {
    font-size: 18px;
    font-weight: 500;
}

.sticky-panel {
    position: sticky;
    top: 80px;
}

/* Service grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.service-btn {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 16px 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    position: relative;
    text-align: center;
}

.service-btn:hover {
    border-color: var(--primary);
    background: rgba(13,110,253,0.03);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-btn:active { transform: scale(0.97); }

.service-btn.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(13,110,253,0.08), rgba(20,184,166,0.05));
    box-shadow: 0 0 0 3px rgba(13,110,253,0.15);
}

.service-btn.selected::after {
    content: '✓';
    position: absolute;
    top: 6px;
    right: 8px;
    width: 22px;
    height: 22px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.service-icon {
    font-size: 28px;
    margin-bottom: 6px;
    line-height: 1;
}

.service-name {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 14px;
    margin-bottom: 4px;
    line-height: 1.2;
}

.service-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
}

/* Category grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.category-btn {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    padding: 12px 6px;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 90px;
}

.category-btn:hover {
    border-color: var(--danger);
    background: rgba(220,38,38,0.03);
    transform: translateY(-2px);
}

.category-btn.selected {
    border-color: var(--danger);
    background: rgba(220,38,38,0.06);
    box-shadow: 0 0 0 3px rgba(220,38,38,0.15);
}

.cat-icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.cat-name {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 12px;
    line-height: 1.2;
}

/* Selected services list */
.selected-services {
    min-height: 100px;
    max-height: 300px;
    overflow-y: auto;
    border: 1px dashed var(--gray-300);
    border-radius: 8px;
    padding: 8px;
    background: var(--gray-50);
}

.empty-selection {
    text-align: center;
    color: var(--gray-400);
    padding: 20px 10px;
}

.empty-selection i {
    font-size: 32px;
    display: block;
    margin-bottom: 6px;
}

.selected-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 8px 10px;
    border-radius: 8px;
    margin-bottom: 6px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.selected-item:last-child { margin-bottom: 0; }

.selected-item-info {
    flex: 1;
    min-width: 0;
    padding-right: 8px;
}

.selected-item-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-800);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.selected-item-price {
    font-size: 12px;
    color: var(--gray-500);
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 4px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-100);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--gray-700);
    font-size: 16px;
    transition: all 0.1s;
}

.qty-btn:hover { background: var(--primary); color: white; }
.qty-btn:active { transform: scale(0.9); }

.qty-value {
    min-width: 28px;
    text-align: center;
    font-weight: 700;
    color: var(--gray-800);
}

.qty-remove {
    background: transparent;
    border: none;
    color: var(--danger);
    font-size: 16px;
    padding: 4px;
    margin-left: 4px;
    cursor: pointer;
}

/* Totals */
.totals-section {
    padding: 12px 4px;
    border-top: 1px solid var(--gray-200);
    margin-top: 12px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 15px;
    color: var(--gray-700);
}

.total-row strong {
    font-size: 18px;
    color: var(--gray-900);
}

/* Payment buttons */
.payment-section {
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
    margin-top: 12px;
}

.payment-buttons,
.method-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.payment-btn,
.method-btn {
    background: white;
    border: 2px solid var(--gray-300);
    border-radius: 10px;
    padding: 14px 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
}

.payment-btn i, .method-btn i { font-size: 18px; }
.payment-btn:hover, .method-btn:hover { transform: translateY(-2px); }
.payment-btn:active, .method-btn:active { transform: scale(0.97); }

.payment-btn.payment-paid.selected {
    background: var(--success);
    color: white;
    border-color: var(--success);
    box-shadow: 0 4px 12px rgba(22,163,74,0.3);
}

.payment-btn.payment-unpaid.selected {
    background: var(--warning);
    color: white;
    border-color: var(--warning);
    box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}

.method-btn.method-cash.selected {
    background: var(--info);
    color: white;
    border-color: var(--info);
    box-shadow: 0 4px 12px rgba(8,145,178,0.3);
}

.method-btn.method-online.selected {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(13,110,253,0.3);
}

/* Submit button */
.btn-submit {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    color: white;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 20px;
    box-shadow: 0 4px 12px rgba(22,163,74,0.3);
    transition: all 0.15s;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(22,163,74,0.4);
    color: white;
}

.btn-submit:disabled {
    background: var(--gray-300);
    color: var(--gray-500);
    box-shadow: none;
    cursor: not-allowed;
}

/* Autocomplete */
.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    max-height: 260px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    margin-top: 4px;
}

.autocomplete-dropdown.show { display: block; }

.autocomplete-item {
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid var(--gray-100);
}
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover, .autocomplete-item.highlighted { background: var(--gray-100); }
.autocomplete-item strong { color: var(--gray-800); }
.autocomplete-item small { color: var(--gray-500); }

/* Success modal */
.success-modal { border-radius: 16px; border: none; }
.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    box-shadow: 0 8px 20px rgba(22,163,74,0.3);
    animation: successPop 0.4s ease;
}

.success-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--success);
    margin: 12px 0 4px;
}

@keyframes successPop {
    0% { transform: scale(0); }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ============================================
   DASHBOARD
   ============================================ */
.filter-card { border: none; box-shadow: var(--shadow); }

.section-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-700);
    margin: 16px 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 16px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--gray-300);
    height: 100%;
    transition: transform 0.15s ease;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.stat-content { flex: 1; min-width: 0; }

.stat-label {
    font-size: 12px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 2px;
}

.stat-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.1;
}

.stat-meta {
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 2px;
}

.card-total-income { border-left-color: var(--success); }
.card-total-income .stat-icon { background: rgba(22,163,74,0.1); color: var(--success); }
.card-paid-income { border-left-color: var(--teal); }
.card-paid-income .stat-icon { background: rgba(20,184,166,0.1); color: var(--teal); }
.card-unpaid-income { border-left-color: var(--warning); }
.card-unpaid-income .stat-icon { background: rgba(245,158,11,0.1); color: var(--warning); }
.card-cash-income { border-left-color: var(--info); }
.card-cash-income .stat-icon { background: rgba(8,145,178,0.1); color: var(--info); }
.card-online-income { border-left-color: var(--primary); }
.card-online-income .stat-icon { background: rgba(13,110,253,0.1); color: var(--primary); }

.card-total-expense { border-left-color: var(--danger); }
.card-total-expense .stat-icon { background: rgba(220,38,38,0.1); color: var(--danger); }
.card-paid-expense { border-left-color: var(--teal); }
.card-paid-expense .stat-icon { background: rgba(20,184,166,0.1); color: var(--teal); }
.card-unpaid-expense { border-left-color: var(--warning); }
.card-unpaid-expense .stat-icon { background: rgba(245,158,11,0.1); color: var(--warning); }
.card-cash-expense { border-left-color: var(--info); }
.card-cash-expense .stat-icon { background: rgba(8,145,178,0.1); color: var(--info); }
.card-online-expense { border-left-color: var(--primary); }
.card-online-expense .stat-icon { background: rgba(13,110,253,0.1); color: var(--primary); }

.highlight-card {
    border: none;
    color: white;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
}
.highlight-card.net-positive {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
}
.highlight-card.net-negative {
    background: linear-gradient(135deg, var(--danger) 0%, #991b1b 100%);
}

.highlight-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    font-weight: 600;
}
.highlight-value {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    margin: 4px 0;
}
.highlight-subtitle { font-size: 13px; opacity: 0.85; }
.highlight-icon { font-size: 56px; opacity: 0.4; }

/* ============================================
   TABLES & CARDS
   ============================================ */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.card-header.bg-white {
    background: white !important;
    border-bottom: 1px solid var(--gray-200);
}

.mini-stat {
    background: white;
    border-radius: 8px;
    padding: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--gray-200);
}

.mini-label {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 4px;
}

.mini-value {
    font-size: 18px;
    font-weight: 700;
}

.table > :not(caption) > * > * { padding: 10px 12px; }
.table-hover tbody tr:hover { background-color: rgba(13,110,253,0.03); }

/* ============================================
   RECEIPT
   ============================================ */
.receipt-paper {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto;
}

.receipt-header h2 {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

@media print {
    .no-print, .app-sidebar, .app-topbar, .flash-container { display: none !important; }
    .app-main { margin-left: 0 !important; }
    .receipt-paper { box-shadow: none; padding: 0; }
    body { background: white; }
}

/* ============================================
   ICON CIRCLE
   ============================================ */
.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

/* ============================================
   ALERTS
   ============================================ */
.alert { border: none; border-radius: 8px; }

/* ============================================
   FORM CONTROLS
   ============================================ */
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,0.15);
}

.form-control-lg { font-size: 16px; padding: 10px 14px; }

/* ============================================
   BADGES
   ============================================ */
.badge {
    font-weight: 600;
    padding: 5px 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .app-sidebar {
        transform: translateX(-100%);
    }
    .app-sidebar.show {
        transform: translateX(0);
    }
    .app-main {
        margin-left: 0;
    }
    .sticky-panel {
        position: static;
    }
    .highlight-value {
        font-size: 32px;
    }
    .highlight-icon {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .app-content, .teller-main { padding: 12px 8px; }
    .pos-card { padding: 12px; }
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .service-btn { min-height: 100px; padding: 12px 4px; }
    .service-icon { font-size: 24px; }
    .service-name { font-size: 13px; }
    .service-price { font-size: 14px; }
    .stat-value { font-size: 18px; }
    .highlight-value { font-size: 28px; }
    .topbar-title h1 { font-size: 16px; }
    .user-info { display: none; }
    .payment-btn, .method-btn { padding: 12px 6px; font-size: 13px; }
    .btn-submit { padding: 12px 16px; }
}