/* ===== LIS Professional Design System ===== */
:root {
    /* Layout */
    --sidebar-width: 230px;
    --topbar-height: 52px;

    /* Sidebar */
    --sidebar-bg: #0f172a;
    --sidebar-hover: #1e293b;
    --sidebar-active-bg: rgba(59, 130, 246, 0.12);
    --sidebar-active-border: #3b82f6;
    --sidebar-text: #94a3b8;
    --sidebar-text-active: #f1f5f9;
    --sidebar-section: #475569;

    /* Accent palette */
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-light: #eff6ff;
    --accent-green: #059669;
    --accent-green-light: #ecfdf5;
    --accent-amber: #d97706;
    --accent-amber-light: #fffbeb;
    --accent-red: #dc2626;
    --accent-red-light: #fef2f2;
    --accent-purple: #7c3aed;
    --accent-purple-light: #f5f3ff;

    /* Neutrals */
    --bg-body: #f8fafc;
    --bg-card: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;

    /* Misc */
    --radius: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --transition: 0.15s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

/* ===== Top Navbar ===== */
.top-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--topbar-height);
    background: var(--sidebar-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 0 0;
    z-index: 1050;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.top-navbar .brand {
    width: var(--sidebar-width);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    letter-spacing: -0.2px;
}

.top-navbar .brand i {
    font-size: 20px;
    color: var(--accent);
}

.top-navbar .nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-navbar .user-info {
    color: #e2e8f0;
    font-size: 12.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-navbar .user-info .role-badge {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Sidebar ===== */
.sidebar {
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    bottom: 0;
    width: var(--sidebar-width);
    background: var(--sidebar-bg);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 12px 0;
    z-index: 1040;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.08) transparent;
}

.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-track { background: transparent; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 4px; }

.sidebar .nav-section {
    padding: 20px 20px 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--sidebar-section);
}

.sidebar .nav-section:first-child {
    padding-top: 8px;
}

.sidebar .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    margin: 1px 10px;
    color: var(--sidebar-text);
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all var(--transition);
    border-left: 3px solid transparent;
    position: relative;
}

.sidebar .nav-link i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    opacity: 0.7;
}

.sidebar .nav-link:hover {
    background: var(--sidebar-hover);
    color: var(--sidebar-text-active);
}

.sidebar .nav-link:hover i {
    opacity: 1;
}

.sidebar .nav-link.active {
    background: var(--sidebar-active-bg);
    color: var(--sidebar-text-active);
    border-left-color: var(--sidebar-active-border);
    font-weight: 600;
}

.sidebar .nav-link.active i {
    color: var(--sidebar-active-border);
    opacity: 1;
}

.sidebar .nav-link .nav-badge {
    margin-left: auto;
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 10px;
    font-weight: 700;
    background: var(--accent-red);
    color: #fff;
    line-height: 1.4;
}

/* ===== Main Content ===== */
.main-content {
    margin-left: var(--sidebar-width);
    margin-top: var(--topbar-height);
    padding: 24px 28px;
    min-height: calc(100vh - var(--topbar-height));
}

/* ===== Page Header ===== */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

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

.page-header h2 i {
    color: var(--text-secondary);
    font-size: 18px;
}

/* ===== Cards ===== */
.card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    background: var(--bg-card);
    overflow: hidden;
}

.card-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    font-size: 13px;
    padding: 12px 18px;
    color: var(--text-primary);
    letter-spacing: -0.1px;
}

.card-header i {
    color: var(--text-muted);
}

.card-body { padding: 18px; }

/* ===== KPI Cards ===== */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.kpi-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
    position: relative;
}

.kpi-card:hover {
    box-shadow: var(--shadow-md);
    border-color: #cbd5e1;
    transform: translateY(-1px);
    color: inherit;
}

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

.kpi-card .kpi-value {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.kpi-card .kpi-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 600;
    margin-top: 2px;
}

.kpi-card .kpi-sub {
    font-size: 11.5px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ===== Tables ===== */
.table {
    font-size: 13px;
    margin-bottom: 0;
}

.table th {
    font-weight: 600;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    border-bottom: 2px solid var(--border);
    padding: 10px 14px;
    white-space: nowrap;
    background: #fafbfc;
}

.table td {
    padding: 10px 14px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
}

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

.table a {
    font-weight: 500;
}

/* ===== Badges ===== */
.badge {
    font-size: 10.5px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.2px;
}

.badge.bg-success { background: var(--accent-green) !important; }
.badge.bg-danger { background: var(--accent-red) !important; }
.badge.bg-warning { background: #f59e0b !important; }
.badge.bg-info { background: #0ea5e9 !important; color: #fff !important; }
.badge.bg-secondary { background: #64748b !important; }
.badge.bg-primary { background: var(--accent) !important; }

/* ===== Status Filter Bar ===== */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
}

.filter-bar .btn-group .btn {
    font-size: 12px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px !important;
}

.filter-bar .btn-group .btn + .btn {
    margin-left: 4px;
}

.filter-bar .btn-group .btn-outline-primary {
    border-color: var(--border);
    color: var(--text-secondary);
}

.filter-bar .btn-group .btn-outline-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent);
    color: var(--accent);
}

.filter-bar .btn-group .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
}

/* ===== Workflow Stepper ===== */
.workflow-stepper {
    display: flex;
    align-items: stretch;
    margin-bottom: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.workflow-step {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-muted);
    border-right: 1px solid var(--border);
    text-decoration: none;
    transition: background var(--transition);
    position: relative;
}

.workflow-step:last-child { border-right: none; }

.workflow-step .step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    background: var(--border-light);
    color: var(--text-muted);
    flex-shrink: 0;
    transition: all var(--transition);
}

.workflow-step.active {
    background: var(--accent-light);
    color: var(--accent);
}

.workflow-step.active .step-num {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.workflow-step.done {
    color: var(--accent-green);
}

.workflow-step.done .step-num {
    background: var(--accent-green);
    color: #fff;
}

.workflow-step.done .step-num i { font-size: 14px; }
.workflow-step .step-text { line-height: 1.3; }
.workflow-step .step-title { font-weight: 600; font-size: 12.5px; }
.workflow-step .step-desc { font-size: 10.5px; color: var(--text-muted); font-weight: 400; }

/* ===== Action Queue ===== */
.action-queue { list-style: none; padding: 0; margin: 0; }

.action-queue li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 13px;
}

.action-queue li:last-child { border-bottom: none; }

.action-queue .aq-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.action-queue .aq-info { flex: 1; min-width: 0; }
.action-queue .aq-title { font-weight: 600; color: var(--text-primary); }
.action-queue .aq-sub { font-size: 11.5px; color: var(--text-muted); }

/* ===== Forms ===== */
.form-label {
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.form-control, .form-select {
    font-size: 13.5px;
    padding: 8px 12px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    color: var(--text-primary);
    transition: all var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control-sm, .form-select-sm {
    font-size: 12.5px;
    padding: 5px 10px;
}

.form-check-label { font-size: 13px; }

.form-control::placeholder {
    color: var(--text-muted);
}

/* Search bar */
.search-bar {
    display: flex;
    gap: 8px;
    align-items: center;
}

.search-bar .form-control {
    background: var(--bg-card);
}

/* ===== Buttons ===== */
.btn {
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius);
    padding: 8px 16px;
    transition: all var(--transition);
    letter-spacing: -0.1px;
}

.btn-sm {
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 6px;
}

.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 1px 2px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

.btn-success {
    background: var(--accent-green);
    border-color: var(--accent-green);
    box-shadow: 0 1px 2px rgba(5, 150, 105, 0.2);
}

.btn-success:hover {
    background: #047857;
    border-color: #047857;
}

.btn-warning {
    background: var(--accent-amber);
    border-color: var(--accent-amber);
    color: #fff;
}

.btn-warning:hover {
    background: #b45309;
    border-color: #b45309;
    color: #fff;
}

.btn-danger {
    background: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: 0 1px 2px rgba(220, 38, 38, 0.2);
}

.btn-danger:hover {
    background: #b91c1c;
    border-color: #b91c1c;
}

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

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

.btn-outline-secondary {
    color: var(--text-secondary);
    border-color: var(--border);
}

.btn-outline-secondary:hover {
    background: var(--border-light);
    border-color: #cbd5e1;
    color: var(--text-primary);
}

.btn-outline-info {
    color: #0ea5e9;
    border-color: #bae6fd;
}

.btn-outline-info:hover {
    background: #f0f9ff;
    color: #0284c7;
    border-color: #7dd3fc;
}

.btn-outline-success {
    color: var(--accent-green);
    border-color: #a7f3d0;
}

.btn-outline-success:hover {
    background: var(--accent-green-light);
    color: #047857;
    border-color: #6ee7b7;
}

.btn-outline-danger {
    color: var(--accent-red);
    border-color: #fecaca;
}

.btn-outline-danger:hover {
    background: var(--accent-red-light);
    color: #b91c1c;
    border-color: #fca5a5;
}

.btn-outline-warning {
    color: var(--accent-amber);
    border-color: #fde68a;
}

.btn-outline-warning:hover {
    background: var(--accent-amber-light);
    color: #b45309;
    border-color: #fcd34d;
}

/* ===== Alerts ===== */
.alert {
    font-size: 13px;
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    border: none;
    font-weight: 500;
}

.alert-success { background: var(--accent-green-light); color: #065f46; border-left: 4px solid var(--accent-green); }
.alert-danger { background: var(--accent-red-light); color: #991b1b; border-left: 4px solid var(--accent-red); }
.alert-warning { background: var(--accent-amber-light); color: #92400e; border-left: 4px solid var(--accent-amber); }
.alert-info { background: #f0f9ff; color: #075985; border-left: 4px solid #0ea5e9; }

/* ===== Abnormal Flags ===== */
.abnormal-high { color: var(--accent-red); font-weight: 700; }
.abnormal-low { color: var(--accent); font-weight: 700; }

/* ===== Patient Header ===== */
.patient-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.patient-avatar {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.patient-header .patient-meta { flex: 1; }

.patient-header .patient-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.patient-header .patient-id {
    font-size: 12.5px;
    color: var(--text-muted);
    font-weight: 500;
}

.patient-header .patient-tags {
    display: flex;
    gap: 6px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.patient-header .patient-tags .tag {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--border-light);
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== Info Grid ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px;
}

.info-item .info-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 600;
}

.info-item .info-value {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-primary);
}

/* ===== Pagination ===== */
.pagination {
    gap: 3px;
}

.pagination .page-link {
    font-size: 12.5px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius) !important;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all var(--transition);
}

.pagination .page-link:hover {
    background: var(--accent-light);
    border-color: var(--accent);
    color: var(--accent);
}

.pagination .page-item.active .page-link {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 1px 3px rgba(37, 99, 235, 0.3);
}

.pagination .page-item.disabled .page-link {
    color: var(--text-muted);
    background: transparent;
}

/* ===== Empty States ===== */
.empty-state {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 48px;
    opacity: 0.3;
    margin-bottom: 12px;
    display: block;
}

.empty-state p {
    font-size: 13.5px;
    margin: 0;
}

/* ===== Login / Signup ===== */
.login-container { max-width: 420px; margin: 80px auto; }
.signup-container { max-width: 560px; margin: 40px auto; }

.plan-card {
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.plan-card:hover, .plan-card.selected {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.plan-card .plan-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

/* ===== Dropdown Menus ===== */
.dropdown-menu {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 6px;
    font-size: 13px;
}

.dropdown-item {
    border-radius: 6px;
    padding: 7px 12px;
    font-weight: 500;
    transition: background var(--transition);
}

.dropdown-item:hover {
    background: var(--border-light);
}

/* ===== Modal ===== */
.modal-content {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.modal-header {
    border-bottom: 1px solid var(--border);
    padding: 14px 18px;
}

.modal-footer {
    border-top: 1px solid var(--border);
    padding: 12px 18px;
}

/* ===== Responsive ===== */
@media (max-width: 767.98px) {
    .sidebar { display: none; }
    .sidebar.show { display: block; width: 260px; }
    .main-content { margin-left: 0; padding: 16px; }
    .page-header { flex-direction: column; gap: 10px; align-items: flex-start; }
    .workflow-stepper { flex-direction: column; }
    .workflow-step { border-right: none; border-bottom: 1px solid var(--border); }
    .kpi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media print {
    .sidebar, .top-navbar, .no-print { display: none !important; }
    .main-content { margin: 0; padding: 0; }
    .card { border: none !important; box-shadow: none !important; }
}

/* ===== Category Titles (Sample detail, grouped tables) ===== */
.category-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    border-bottom: 2px solid var(--accent);
    padding: 10px 18px 8px;
    background: var(--border-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.panel-row td { background: #f0f4ff !important; }
.comp-row td:first-child { padding-left: 32px !important; }

/* ===== Orders Create Page ===== */
.patient-list { max-height: calc(100vh - 220px); overflow-y: auto; }

.patient-item {
    cursor: pointer;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border-light);
    font-size: 13px;
    display: block;
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition);
}

.patient-item:hover {
    background: var(--accent-light);
    color: var(--text-primary);
}

.patient-item.active {
    background: var(--accent-light);
    border-left: 3px solid var(--accent);
    font-weight: 500;
}

.patient-item .pnum {
    font-size: 11.5px;
    color: var(--text-muted);
}

.sample-badge { font-size: 10.5px; padding: 3px 8px; }

.test-category {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 12px;
    margin-bottom: 6px;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}

.test-item {
    padding: 5px 0;
    font-size: 13px;
}

.test-item label { cursor: pointer; }

.test-price {
    font-size: 11.5px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== Revenue Cards ===== */
.rev-card {
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    color: #fff;
    box-shadow: var(--shadow);
}

.rev-card .rev-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

.rev-card .rev-value {
    font-size: 28px;
    font-weight: 800;
    margin-top: 4px;
    letter-spacing: -0.5px;
}

.rev-card .rev-sub {
    font-size: 11.5px;
    opacity: 0.75;
    margin-top: 4px;
}

.rev-invoiced { background: linear-gradient(135deg, #1e3a5f, #2563eb); }
.rev-collected { background: linear-gradient(135deg, #166534, #22c55e); }
.rev-pending { background: linear-gradient(135deg, #92400e, #f59e0b); }
.rev-count { background: linear-gradient(135deg, #581c87, #a855f7); }

.method-bar { height: 8px; border-radius: 4px; background: #e5e7eb; overflow: hidden; margin-top: 4px; }
.method-fill { height: 100%; border-radius: 4px; }

.top-test-rank {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
