@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700&display=swap');

:root {
    --sidebar-width: 230px;
    --topbar-height: 60px;
    --sidebar-bg: #0f172a;
    --sidebar-hover: #1e293b;
    --sidebar-active: #3b82f6;
    --sidebar-text: #94a3b8;
    --sidebar-text-active: #ffffff;
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #06b6d4;
    --bg: #f1f5f9;
    --card-bg: #ffffff;
    --border: #e2e8f0;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
    --radius: 10px;
    --radius-sm: 6px;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
    font-family: 'Tajawal', 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    background: var(--bg);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    height: 100%;
}

/* ===== LAYOUT ===== */
.app-wrapper {
    display: flex;
    min-height: 100vh;
}

/* ===== SIDEBAR ===== */
.sidebar {
    width: var(--sidebar-width);
    background: linear-gradient(180deg, #0d1b2e 0%, #0f172a 60%, #131f35 100%);
    height: 100vh;
    position: sticky;
    top: 0;
    flex-shrink: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    transition: width .28s cubic-bezier(.4,0,.2,1);
    overflow: hidden;
    border-left: 1px solid rgba(255,255,255,0.06);
}

.sb-collapsed .sidebar {
    width: 0 !important;
    min-width: 0 !important;
}

/* ── Logo ── */
.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 0 18px;
    height: var(--topbar-height);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}

.logo-circle {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59,130,246,.35);
}

.logo-text {
    font-size: 16px;
    font-weight: 700;
    color: #f1f5f9;
    letter-spacing: .2px;
    white-space: nowrap;
}

/* ── Nav scroll area ── */
.sb-nav {
    padding: 10px 8px 16px;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.sb-nav::-webkit-scrollbar { width: 3px; }
.sb-nav::-webkit-scrollbar-track { background: transparent; }
.sb-nav::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }

/* ── Nav item link ── */
.nav-item-link {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px 8px 10px;
    border-radius: var(--radius-sm);
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 1px;
    transition: background .14s ease, color .14s ease, border-color .14s ease;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    border-right: 3px solid transparent;
    background: none;
    width: 100%;
    text-align: right;
    white-space: nowrap;
}

.nav-item-link:hover {
    background: rgba(255,255,255,0.06);
    color: #e2e8f0;
    border-right-color: rgba(59,130,246,0.4);
}

.nav-item-link.active {
    background: rgba(59,130,246,0.14);
    color: #93c5fd;
    border-right-color: #3b82f6;
    font-weight: 600;
}

.nav-item-link svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    opacity: .65;
}

.nav-item-link:hover svg { opacity: .9; }
.nav-item-link.active svg { opacity: 1; }

.sidebar-footer {
    padding: 10px 8px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

/* ===== MAIN WRAPPER ===== */
.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 0;
}

/* ===== TOPBAR ===== */
.topbar {
    height: var(--topbar-height);
    background: var(--card-bg);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    gap: 12px;
}

.topbar-start {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

/* Sidebar toggle button */
.sb-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: none;
    color: var(--text-secondary);
    cursor: pointer;
    flex-shrink: 0;
    transition: all .15s ease;
}
.sb-toggle:hover {
    background: var(--bg);
    color: var(--primary);
    border-color: var(--primary);
}

.topbar-brand {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.topbar-user {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== PAGE CONTENT ===== */
.page-content {
    padding: 24px;
    flex: 1;
}

/* ===== CARDS ===== */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.card-header {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    background: none;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-body { padding: 20px; }

/* ===== STAT CARDS ===== */
.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s, transform .2s;
}

.stat-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-1px);
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg { width: 26px; height: 26px; }

.stat-icon.blue   { background: #eff6ff; color: #3b82f6; }
.stat-icon.green  { background: #f0fdf4; color: #10b981; }
.stat-icon.yellow { background: #fffbeb; color: #f59e0b; }
.stat-icon.purple { background: #f5f3ff; color: #8b5cf6; }
.stat-icon.red    { background: #fef2f2; color: #ef4444; }

.stat-info { flex: 1; }

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ===== TABLES ===== */
.table {
    font-size: 13.5px;
    color: var(--text-primary);
}

.table thead th {
    background: #f8fafc;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 2px solid var(--border);
    padding: 10px 14px;
    white-space: nowrap;
}

.table tbody td {
    padding: 10px 14px;
    vertical-align: middle;
    border-color: #f1f5f9;
}

.table tbody tr:hover { background: #f8fafc; }

.table-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.table-card .table { margin-bottom: 0; }

/* ===== PAGE HEADER ===== */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.page-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.page-header .subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* ===== BADGES ===== */
.badge { font-weight: 600; font-size: 11px; padding: 4px 8px; border-radius: 20px; }

/* ===== FORMS ===== */
.form-control, .form-select {
    border-color: var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Tajawal', sans-serif;
    font-size: 13.5px;
    color: var(--text-primary);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}

/* ===== BUTTONS ===== */
.btn {
    font-family: 'Tajawal', sans-serif;
    font-weight: 500;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* ===== PAGINATION ===== */
.page-link { font-family: 'Tajawal', sans-serif; font-size: 13px; }

/* ===== FILTERS BAR ===== */
.filters-bar {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== BLAZOR ERROR ===== */
#blazor-error-ui {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 9999;
    display: none;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

#blazor-error-ui.blazor-error-boundary { display: flex; }

#blazor-error-ui .reload {
    color: #dc2626;
    font-weight: 600;
    margin-right: auto;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    opacity: .7;
}

/* ===== LOGIN PAGE ===== */
.lp-root {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #070d1a;
    position: relative;
    overflow: hidden;
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
}

.lp-bg { position: absolute; inset: 0; pointer-events: none; }
.lp-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .18;
}
.lp-blob-1 {
    width: 480px; height: 480px;
    background: #3b82f6;
    top: -120px; right: -100px;
}
.lp-blob-2 {
    width: 360px; height: 360px;
    background: #06b6d4;
    bottom: -80px; left: -80px;
}

.lp-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px 36px 32px;
    box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(59,130,246,.08);
    backdrop-filter: blur(20px);
}

.lp-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.lp-logo-circle {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 700; color: white;
    box-shadow: 0 8px 24px rgba(59,130,246,.4);
    flex-shrink: 0;
}

.lp-app-name {
    font-size: 22px; font-weight: 700; color: #f1f5f9;
    line-height: 1.2;
}

.lp-app-sub {
    font-size: 12px; color: #64748b;
    margin-top: 2px;
}

.lp-heading {
    font-size: 16px; font-weight: 600; color: #94a3b8;
    margin: 0 0 20px; padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.lp-error {
    display: flex; align-items: center; gap: 8px;
    background: rgba(239,68,68,.12);
    border: 1px solid rgba(239,68,68,.25);
    color: #fca5a5;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 16px;
}

.lp-field { margin-bottom: 18px; }

.lp-label {
    display: block;
    font-size: 13px; font-weight: 600; color: #94a3b8;
    margin-bottom: 7px;
}

.lp-input-wrap {
    position: relative;
}

.lp-input-icon {
    position: absolute;
    right: 12px; top: 50%; transform: translateY(-50%);
    width: 17px; height: 17px;
    color: #475569;
    pointer-events: none;
}

.lp-input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 11px 40px 11px 14px;
    color: #e2e8f0;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    transition: border-color .15s, box-shadow .15s;
    outline: none;
}

.lp-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,.18);
    background: rgba(255,255,255,0.07);
}

.lp-input::placeholder { color: #334155; }

.lp-val {
    display: block;
    font-size: 12px; color: #f87171;
    margin-top: 5px;
}

.lp-remember {
    margin-bottom: 22px;
}
.lp-remember label {
    display: flex; align-items: center; gap: 8px;
    color: #64748b; font-size: 13px; cursor: pointer;
}
.lp-remember input[type=checkbox] {
    width: 15px; height: 15px; accent-color: #3b82f6;
}

.lp-btn {
    width: 100%;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none; border-radius: 10px;
    color: white;
    font-family: 'Tajawal', sans-serif;
    font-size: 15px; font-weight: 600;
    padding: 12px;
    cursor: pointer;
    transition: opacity .15s, transform .12s;
    box-shadow: 0 4px 20px rgba(59,130,246,.35);
}

.lp-btn:hover { opacity: .92; transform: translateY(-1px); }
.lp-btn:active { transform: translateY(0); }

.lp-footer {
    text-align: center;
    color: #334155;
    font-size: 11px;
    margin-top: 24px;
}

/* ===== VALID / INVALID ===== */
.valid.modified:not([type=checkbox]) { outline: 2px solid var(--success); }
.invalid { outline: 2px solid var(--danger); }
.validation-message { color: var(--danger); font-size: 12px; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* ── PWA / Responsive ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .page-container { padding: 8px !important }
    .sidebar { display: none !important }
    .top-row { padding: 4px 8px !important }
}

/* Safe area insets for notched phones */
body {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

/* Prevent text selection on buttons (feels more native) */
button { -webkit-tap-highlight-color: transparent; user-select: none }

/* Smooth scrolling everywhere */
html { scroll-behavior: smooth }

/* Better touch targets */
@media (hover: none) and (pointer: coarse) {
    button, a, select, input[type="checkbox"], input[type="radio"] {
        min-height: 44px;
    }
}

/* ===== SHARED ADMIN PAGE SHELL ===== */
.page-shell {
    padding: 24px 28px;
    direction: rtl;
}
.screen-area {
    min-height: calc(100vh - var(--topbar-height));
}
.page-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 12px;
}

/* ===== DATA TABLE ===== */
.data-table-wrap,
.table-wrap {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow-x: auto;
    box-shadow: var(--shadow-sm);
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}
.data-table thead th {
    background: #f8fafc;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 11px 14px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
    text-align: right;
}
.data-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background .12s;
}
.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:hover { background: #f8fafc; }
.data-table tbody td {
    padding: 10px 14px;
    color: var(--text-primary);
    vertical-align: middle;
    text-align: right;
}
.empty-row,
.loading-row {
    text-align: center !important;
    color: var(--text-muted);
    padding: 32px !important;
    font-size: 13px;
}
.empty-state {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== DRAWER ===== */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 900;
    animation: fadeInOverlay .15s;
}
@keyframes fadeInOverlay { from { opacity: 0 } to { opacity: 1 } }

.drawer-right {
    position: fixed;
    top: 0;
    left: 0;
    width: 420px;
    max-width: 95vw;
    height: 100vh;
    background: var(--card-bg);
    border-right: 1px solid var(--border);
    z-index: 901;
    display: flex;
    flex-direction: column;
    box-shadow: 6px 0 32px rgba(0, 0, 0, .14);
    animation: slideInDrawer .2s cubic-bezier(.22,1,.36,1);
}
@keyframes slideInDrawer {
    from { transform: translateX(-28px); opacity: 0 }
    to   { transform: translateX(0);     opacity: 1 }
}
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.drawer-header h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}
.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.drawer-footer {
    padding: 14px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* ===== FORM GROUPS (inside drawers / forms) ===== */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.form-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}
.form-field-check,
.form-check-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-field-check label,
.form-check-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
}
.form-control,
.form-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Tajawal', sans-serif;
    font-size: 13.5px;
    color: var(--text-primary);
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
}
.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}

/* ===== SHARED BUTTONS ===== */
.btn-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-family: 'Tajawal', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-primary:hover { background: var(--primary-dark); }

.btn-icon {
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 15px;
    transition: background .12s, color .12s;
}
.btn-icon:hover { background: #f1f5f9; color: var(--text-primary); }

.btn-icon-sm {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: background .12s, color .12s;
}
.btn-icon-sm:hover { background: #f1f5f9; }
.btn-icon-sm.danger,
.btn-icon-sm.danger:hover { color: var(--danger); background: rgba(239,68,68,.08); }

.btn-danger,
.btn-danger-sm {
    background: var(--danger);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-family: 'Tajawal', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
}
.btn-danger:hover,
.btn-danger-sm:hover { background: #dc2626; }

.btn-del {
    background: none;
    border: 1px solid rgba(239,68,68,.3);
    color: var(--danger);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    cursor: pointer;
    transition: background .12s;
}
.btn-del:hover { background: rgba(239,68,68,.08); }

/* ===== STATUS BADGES ===== */
.badge-active {
    display: inline-block;
    background: rgba(16,185,129,.1);
    color: #059669;
    border: 1px solid rgba(16,185,129,.25);
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 700;
}
.badge-inactive {
    display: inline-block;
    background: rgba(239,68,68,.1);
    color: var(--danger);
    border: 1px solid rgba(239,68,68,.25);
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 700;
}

/* ===== FILTER BAR ===== */
.filter-select {
    padding: 7px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Tajawal', sans-serif;
    font-size: 13px;
    color: var(--text-primary);
    background: #fff;
    cursor: pointer;
}
