/* ============================================================
   DUKA SUITE CUSTOM - Main Stylesheet
   Theme: Emerald Green (#10b981, #059669)
   Supports: Light & Dark mode
   ============================================================ */

/* ---- CSS Variables (Light Theme) ---- */
:root {
    --primary:          #10b981;
    --primary-dark:     #059669;
    --primary-light:    #d1fae5;
    --primary-xlight:   #ecfdf5;

    --sidebar-bg:       #ffffff;
    --sidebar-width:    260px;
    --sidebar-border:   #e5e7eb;

    --bg-page:          #f3f4f6;
    --bg-card:          #ffffff;
    --bg-input:         #ffffff;
    --bg-hover:         #f9fafb;
    --bg-table-alt:     #f9fafb;

    --text-primary:     #111827;
    --text-secondary:   #6b7280;
    --text-muted:       #9ca3af;
    --text-inverse:     #ffffff;

    --border-color:     #e5e7eb;
    --border-focus:     #10b981;

    --radius-sm:        6px;
    --radius-md:        10px;
    --radius-lg:        14px;
    --radius-xl:        20px;

    --shadow-sm:        0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md:        0 4px 12px rgba(0,0,0,.08);
    --shadow-lg:        0 10px 30px rgba(0,0,0,.12);
    --shadow-modal:     0 20px 60px rgba(0,0,0,.18);

    --danger:           #ef4444;
    --danger-light:     #fef2f2;
    --warning:          #f59e0b;
    --warning-light:    #fffbeb;
    --info:             #3b82f6;
    --info-light:       #eff6ff;
    --success:          #10b981;
    --success-light:    #d1fae5;

    --font:             'Plus Jakarta Sans', system-ui, sans-serif;
    --transition:       0.2s ease;
    --topbar-h:         64px;
}

/* ---- Dark Mode Variables ---- */
[data-theme="dark"], .dark-mode {
    --sidebar-bg:       #1f2937;
    --sidebar-border:   #374151;

    --bg-page:          #111827;
    --bg-card:          #1f2937;
    --bg-input:         #374151;
    --bg-hover:         #374151;
    --bg-table-alt:     #263244;

    --text-primary:     #f9fafb;
    --text-secondary:   #d1d5db;
    --text-muted:       #9ca3af;

    --border-color:     #374151;
    --shadow-sm:        0 1px 3px rgba(0,0,0,.3);
    --shadow-md:        0 4px 12px rgba(0,0,0,.4);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg-page);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background var(--transition), color var(--transition);
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.sidebar {
    position: fixed;
    top: 0; left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--sidebar-bg);
    border-right: 1px solid var(--sidebar-border);
    display: flex;
    flex-direction: column;
    z-index: 300;
    transition: transform var(--transition), background var(--transition);
    overflow: hidden;
}

.main-wrapper {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: margin var(--transition);
}


/* ---- Sidebar Header ---- */
.sidebar-header {
    padding: 20px 18px 16px;
    border-bottom: 1px solid var(--sidebar-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px;
    flex-shrink: 0;
}
.brand-logo { width: 40px; height: 40px; object-fit: contain; border-radius: var(--radius-md); }
.brand-name { display: block; font-size: 14px; font-weight: 700; color: var(--text-primary); line-height: 1.2; }
.brand-tagline { display: block; font-size: 11px; color: var(--text-muted); }
.sidebar-close-btn { display: none; width: 32px; height: 32px; border-radius: var(--radius-sm); align-items: center; justify-content: center; color: var(--text-muted); }
.sidebar-close-btn:hover { background: var(--bg-hover); }

/* ---- Sidebar Nav ---- */
.sidebar-nav {
    padding: 12px 10px;
    flex: 1;
    overflow-y: auto;
    scrollbar-width: none;
}
.sidebar-nav::-webkit-scrollbar { display: none; }
.nav-section-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    padding: 12px 8px 4px;
}
.nav-item {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 13.5px;
    font-weight: 500;
    margin-bottom: 2px;
    transition: all var(--transition);
}
.nav-item i { width: 18px; text-align: center; font-size: 14px; flex-shrink: 0; }
.nav-item:hover { background: var(--primary-xlight); color: var(--primary); }
.dark-mode .nav-item:hover { background: rgba(16,185,129,.12); }
.nav-item.active {
    background: var(--primary-xlight);
    color: var(--primary);
    font-weight: 600;
}
.dark-mode .nav-item.active { background: rgba(16,185,129,.15); }

/* ---- Sidebar Footer ---- */
.sidebar-footer {
    padding: 14px 12px;
    border-top: 1px solid var(--sidebar-border);
    flex-shrink: 0;
}
.user-card { display: flex; align-items: center; gap: 10px; }
.user-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff; font-weight: 700; font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.user-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.user-info { flex: 1; min-width: 0; }
.user-name { display: block; font-size: 13px; font-weight: 600; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-role { display: block; font-size: 11px; color: var(--text-muted); }
.logout-btn { width: 30px; height: 30px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all var(--transition); }
.logout-btn:hover { color: var(--danger); background: var(--danger-light); }

/* ---- Sidebar Overlay ---- */
.sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 290; }

/* ---- Topbar ---- */
.topbar {
    height: var(--topbar-h);
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 24px;
    position: sticky; top: 0; z-index: 200;
    gap: 16px;
    transition: background var(--transition);
}
.topbar-left { display: flex; align-items: center; gap: 14px; }
.topbar-right { display: flex; align-items: center; gap: 10px; }
.topbar-toggle {
    width: 36px; height: 36px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary);
    display: none;
}
.topbar-toggle:hover { background: var(--bg-hover); }
.page-title { font-size: 16px; font-weight: 700; color: var(--text-primary); }

/* ---- Theme Toggle ---- */
.theme-toggle-btn {
    width: 36px; height: 36px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    transition: all var(--transition);
}
.theme-toggle-btn:hover { background: var(--primary-xlight); color: var(--primary); border-color: var(--primary); }

/* ---- Profile Dropdown ---- */
.profile-dropdown { position: relative; }
.profile-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex; align-items: center; justify-content: center;
}
.profile-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.dropdown-menu {
    display: none;
    position: absolute; top: calc(100% + 8px); right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    z-index: 999;
    overflow: hidden;
}
.dropdown-menu.open { display: block; }
.dropdown-header { padding: 14px 16px 10px; border-bottom: 1px solid var(--border-color); }
.dropdown-header strong { display: block; font-size: 13px; }
.dropdown-header small { font-size: 11px; color: var(--text-muted); }
.dropdown-item { display: flex; align-items: center; gap: 10px; padding: 10px 16px; font-size: 13px; color: var(--text-secondary); transition: all var(--transition); }
.dropdown-item:hover { background: var(--bg-hover); color: var(--text-primary); }
.dropdown-item i { width: 16px; text-align: center; }
.dropdown-item.text-danger { color: var(--danger); }
.dropdown-item.text-danger:hover { background: var(--danger-light); }
.dropdown-divider { border-top: 1px solid var(--border-color); }

/* ---- Flash Messages ---- */
.flash-alert {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 20px;
    font-size: 13px; font-weight: 500;
    transition: opacity 0.5s ease;
}
.flash-success { background: var(--success-light); color: #065f46; border-bottom: 1px solid #6ee7b7; }
.flash-error   { background: var(--danger-light); color: #b91c1c; border-bottom: 1px solid #fca5a5; }
.flash-close { margin-left: auto; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; border-radius: 50%; cursor: pointer; opacity: .6; }
.flash-close:hover { opacity: 1; }

/* ---- Page Content ---- */
.page-content { flex: 1; padding: 24px; width: 100%; display: flex; flex-direction: column; gap: 20px; }
.page-footer { padding: 16px 24px; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-color); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.page-footer-powered { font-size: 11px; color: var(--text-muted); opacity: .7; }
.page-footer-powered a { color: var(--primary); text-decoration: none; font-weight: 600; }
.page-footer-powered a:hover { text-decoration: underline; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    transition: background var(--transition), border-color var(--transition);
}
.card-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    gap: 12px;
}
.card-title { font-size: 14px; font-weight: 700; color: var(--text-primary); display: flex; align-items: center; gap: 8px; }
.card-title .badge { background: var(--primary-xlight); color: var(--primary); font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 20px; }
.card-body { padding: 20px; }
.card-body.p-0 { padding: 0; }
.card-actions { display: flex; align-items: center; gap: 8px; }
.card-link { font-size: 12px; color: var(--primary); font-weight: 600; }
.card-sm .card-body { padding: 14px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    padding: 9px 18px;
    border-radius: var(--radius-md);
    font-size: 13px; font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: 1.5px solid transparent;
    text-decoration: none;
    white-space: nowrap;
    font-family: var(--font);
}
.btn:disabled { opacity: .6; cursor: not-allowed; }
.btn-primary  { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.btn-success  { background: #059669; color: #fff; border-color: #059669; }
.btn-success:hover { background: #047857; color: #fff; }
.btn-outline  { background: transparent; color: var(--text-secondary); border-color: var(--border-color); }
.btn-outline:hover { background: var(--bg-hover); color: var(--text-primary); border-color: var(--text-secondary); }
.btn-danger   { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-danger:hover { background: #dc2626; color: #fff; }
.btn-danger-ghost { background: transparent; color: var(--danger); border-color: transparent; }
.btn-danger-ghost:hover { background: var(--danger-light); border-color: var(--danger); }
.btn-sm  { padding: 6px 12px; font-size: 12px; }
.btn-lg  { padding: 12px 24px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-icon { width: 32px; height: 32px; padding: 0; border-radius: var(--radius-sm); color: var(--text-secondary); border-color: var(--border-color); }
.btn-icon:hover { background: var(--bg-hover); color: var(--primary); border-color: var(--primary); }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 12.5px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
.form-label.required::after { content: ' *'; color: var(--danger); }
.form-control {
    width: 100%; padding: 10px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 14px; font-family: var(--font);
    background: var(--bg-input); color: var(--text-primary);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(16,185,129,.12); }
.form-control::placeholder { color: var(--text-muted); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 80px; }
/* Flatpickr alt-input should inherit form-control look */
.flatpickr-input.form-control[readonly] { background: var(--bg-card); cursor: pointer; }
.flatpickr-input.flatpickr-alt-input { cursor: pointer; }

/* ---- Flatpickr Calendar Overrides ---- */
.flatpickr-calendar {
    font-family: var(--font); border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,.14); border: 1px solid var(--border-color);
    background: var(--bg-card); padding: 4px;
}
.flatpickr-months { border-radius: 10px 10px 0 0; padding: 4px 0; }
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month { padding: 8px 10px; color: var(--text-secondary); }
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg { fill: var(--primary); }
.flatpickr-current-month { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.flatpickr-current-month select,
.flatpickr-current-month input.cur-year { color: var(--text-primary); font-weight: 700; }
.flatpickr-weekday { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); }
.flatpickr-day {
    border-radius: 8px; color: var(--text-primary); font-size: 13px; font-weight: 500;
    position: relative;
}
.flatpickr-day:hover { background: var(--primary-xlight); border-color: transparent; color: var(--primary); }
.flatpickr-day.today { border-color: var(--primary); font-weight: 700; }
.flatpickr-day.today:hover { background: var(--primary-xlight); color: var(--primary); }
.flatpickr-day.selected,
.flatpickr-day.selected:hover { background: var(--primary); border-color: var(--primary); color: #fff; font-weight: 700; }
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover { background: #fef2f2; color: #fca5a5; border-color: transparent; cursor: not-allowed; }
.fp-closed-dot {
    position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; border-radius: 50%; background: #ef4444; display: block;
}
.flatpickr-day.disabled .fp-closed-dot { background: #fca5a5; }
.dark-mode .flatpickr-calendar { background: var(--bg-card); }
.dark-mode .flatpickr-day { color: var(--text-primary); }
.dark-mode .flatpickr-day.disabled { background: rgba(239,68,68,.1); color: rgba(239,68,68,.4); }
.form-hint { font-size: 12px; color: var(--text-muted); }
.form-check-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.form-check { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-secondary); cursor: pointer; }
.form-check input { accent-color: var(--primary); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.input-with-icon { position: relative; }
.input-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 13px; pointer-events: none; }
.input-with-icon .form-control { padding-left: 36px; }
.input-prefix { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 12px; font-weight: 600; pointer-events: none; }
.input-with-icon .input-prefix ~ .form-control { padding-left: 40px; }
.password-toggle { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 13px; cursor: pointer; }
.select-with-action { display: flex; gap: 8px; }
.select-with-action select { flex: 1; }

/* ============================================================
   STATS CARDS (Dashboard)
   ============================================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex; flex-direction: column; gap: 12px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.stat-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.stat-primary .stat-icon { background: var(--primary-xlight); color: var(--primary); }
.stat-success .stat-icon { background: var(--success-light); color: #059669; }
.stat-warning .stat-icon { background: var(--warning-light); color: var(--warning); }
.stat-info    .stat-icon { background: var(--info-light); color: var(--info); }
.stat-number { font-size: 26px; font-weight: 800; color: var(--text-primary); line-height: 1; }
.stat-label  { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.stat-footer { font-size: 12px; color: var(--text-muted); }
.stat-badge  { background: var(--primary-xlight); color: var(--primary); padding: 2px 8px; border-radius: 20px; font-size: 11px; font-weight: 600; }

/* ---- Dashboard Grid ---- */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 20px;
}
.card-calendar .card-body { padding: 16px; }

/* ---- FullCalendar Modern Overrides ---- */
.fc .fc-toolbar { margin-bottom: 14px; gap: 8px; flex-wrap: wrap; }
.fc .fc-toolbar-chunk { display: flex; align-items: center; gap: 6px; }
.fc .fc-button-group { display: inline-flex; gap: 4px; }
.fc .fc-toolbar-title { font-size: 15px; font-weight: 700; font-family: var(--font); color: var(--text-primary); }
.fc .fc-button-primary { background: var(--primary) !important; border-color: var(--primary) !important; font-family: var(--font); font-size: 12px; font-weight: 600; border-radius: 8px !important; padding: 5px 12px !important; box-shadow: none !important; }
.fc .fc-button-primary:hover   { background: var(--primary-dark) !important; border-color: var(--primary-dark) !important; }
.fc .fc-button-primary:disabled { opacity: .5 !important; }
.fc .fc-button-primary:not(:disabled).fc-button-active { background: var(--primary-dark) !important; }
.fc-theme-standard td, .fc-theme-standard th { border-color: var(--border-color); }
.fc .fc-scrollgrid { border-radius: 0; }
.fc .fc-col-header-cell-cushion { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); padding: 10px 4px; }
.fc .fc-col-header-cell { background: var(--bg-hover); }
.fc .fc-daygrid-day-number { font-size: 12px; font-weight: 600; color: var(--text-secondary); padding: 5px 7px; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin: 3px; transition: background .15s; }
.fc .fc-day-today .fc-daygrid-day-number { background: var(--primary); color: #fff; }
.fc .fc-day-today { background: rgba(16,185,129,.07) !important; box-shadow: inset 0 0 0 1.5px rgba(16,185,129,.35); }
.fc .fc-daygrid-day-frame { min-height: 78px; position: relative; }
.fc-event-custom { border: none !important; border-radius: 4px !important; font-size: 11px !important; font-weight: 600 !important; padding: 2px 6px !important; margin: 1px 2px 1px !important; cursor: pointer !important; }
.fc .fc-daygrid-event-harness { margin-bottom: 1px; }
/* Compact event content (.fc-ev rendered via eventContent callback) */
.fc-ev { display: flex; align-items: center; gap: 3px; overflow: hidden; min-width: 0; padding: 0 1px; line-height: 1.4; }
.fc-ev-t { font-size: 10px; font-weight: 700; opacity: .88; flex-shrink: 0; font-variant-numeric: tabular-nums; }
.fc-ev-n { font-size: 11px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
@media (max-width: 600px) {
    .fc-ev-t { display: none; }
    .fc-ev-n { font-size: 10px; }
    .fc .fc-daygrid-day-frame { min-height: 52px; }
    .fc-day-add-btn { width: 18px; height: 18px; font-size: 11px; }
    .fc .fc-toolbar-title { font-size: 13px; }
}
.fc .fc-more-link { font-size: 10px; font-weight: 700; color: var(--primary); padding: 1px 4px; }
/* Day cell hover — "+" add button */
.fc-daygrid-day { position: relative; }
.fc-day-add-btn {
    position: absolute; bottom: 5px; right: 5px;
    width: 22px; height: 22px;
    background: var(--primary); color: #fff;
    border-radius: 50%; font-size: 13px; font-weight: 700; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .15s, transform .15s;
    text-decoration: none; z-index: 4; box-shadow: 0 2px 6px rgba(16,185,129,.4);
}
.fc-daygrid-day:hover .fc-day-add-btn { opacity: 1; transform: scale(1.1); }
.fc-day-past .fc-day-add-btn { display: none; }
.fc-day-closed .fc-day-add-btn { display: none !important; }
.fc-closed-label {
    display: inline-flex; align-items: center; gap: 3px;
    font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
    color: #b91c1c; background: #fee2e2; border-radius: 3px;
    padding: 1px 5px; margin: 0 4px 2px; line-height: 1.4;
}
/* Dark mode */
.dark-mode .fc-theme-standard td, .dark-mode .fc-theme-standard th { border-color: var(--border-color); }
.dark-mode .fc .fc-col-header-cell { background: rgba(255,255,255,.03); }
.dark-mode .fc .fc-daygrid-day-number { color: var(--text-secondary); }
.dark-mode .fc .fc-day-other .fc-daygrid-day-number { color: var(--text-muted); }

/* ---- Booking List (Dashboard) ---- */
.booking-list { }
.booking-list-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition);
    color: var(--text-primary);
}
.booking-list-item:last-child { border-bottom: none; }
.booking-list-item:hover { background: var(--bg-hover); }
.booking-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.booking-info { flex: 1; min-width: 0; }
.booking-customer { display: block; font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.booking-meta { display: block; font-size: 11px; color: var(--text-muted); }
.booking-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.booking-amount { font-size: 12px; font-weight: 600; color: var(--primary); }

/* ---- Dash Right Column (stacks Recent Bookings + Upcoming Jobs) ---- */
.dash-right-col { display: flex; flex-direction: column; gap: 20px; min-width: 0; }

/* ---- Upcoming Jobs Card ---- */
.upcoming-list { }
.upcoming-date-divider {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 16px 4px;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .05em; color: var(--text-muted);
    border-top: 1px solid var(--border-color);
}
.upcoming-date-divider:first-child { border-top: none; }
.upcoming-date-divider.is-today { color: var(--primary); }
.today-pill {
    background: var(--primary); color: #fff;
    font-size: 9px; font-weight: 800; letter-spacing: .06em;
    padding: 1px 6px; border-radius: 20px;
}
.days-away {
    background: var(--bg-hover); color: var(--text-muted);
    font-size: 10px; font-weight: 600;
    padding: 1px 7px; border-radius: 20px;
    margin-left: auto;
}
.upcoming-item {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 16px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    transition: background var(--transition);
    text-decoration: none;
}
.upcoming-item:last-child { border-bottom: none; }
.upcoming-item:hover { background: var(--bg-hover); }
.upcoming-time {
    font-size: 11px; font-weight: 700; color: var(--text-muted);
    min-width: 48px; text-align: right; font-variant-numeric: tabular-nums;
}
.upcoming-avatar {
    width: 30px; height: 30px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff; font-weight: 700; font-size: 12px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.upcoming-info { flex: 1; min-width: 0; }
.upcoming-name  { display: block; font-size: 12.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.upcoming-meta  { display: block; font-size: 11px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.empty-state-sm {
    display: flex; flex-direction: column; align-items: center;
    gap: 6px; padding: 24px 16px; color: var(--text-muted);
    font-size: 12px; text-align: center;
}
.empty-state-sm i { font-size: 22px; opacity: .4; }

/* ============================================================
   STATUS BADGES
   ============================================================ */
.status-badge, .badge {
    display: inline-flex; align-items: center;
    padding: 3px 10px; border-radius: 20px;
    font-size: 11px; font-weight: 600; text-transform: capitalize;
}
.badge-primary   { background: var(--primary-xlight); color: var(--primary); }
.badge-secondary { background: #f3f4f6; color: #6b7280; }
.status-confirmed { background: #dbeafe; color: #1d4ed8; }
.status-pending   { background: var(--warning-light); color: #92400e; }
.status-completed { background: var(--success-light); color: #065f46; }
.status-cancelled { background: #f3f4f6; color: #6b7280; }

/* Icons auto-injected into status badges via ::before */
.status-badge.status-confirmed::before,
.status-badge.status-completed::before,
.status-badge.status-pending::before,
.status-badge.status-cancelled::before {
    font-family: 'Font Awesome 6 Free'; font-weight: 900;
    margin-right: 4px; font-size: 9px;
}
.status-badge.status-confirmed::before { content: '\f058'; } /* circle-check */
.status-badge.status-completed::before { content: '\f560'; } /* check-double */
.status-badge.status-pending::before   { content: '\f017'; } /* clock */
.status-badge.status-cancelled::before { content: '\f057'; } /* times-circle */
.payment-paid    { background: var(--success-light); color: #065f46; }
.payment-partial { background: var(--warning-light); color: #92400e; }
.payment-pending { background: #f3f4f6; color: #6b7280; }
.payment-cancelled { background: #fef2f2; color: #b91c1c; }
.invoice-paid    { background: var(--success-light); color: #065f46; }
.invoice-partial { background: var(--warning-light); color: #92400e; }
.invoice-draft   { background: #f3f4f6; color: #6b7280; }
.invoice-sent    { background: #dbeafe; color: #1d4ed8; }
.invoice-overdue { background: #fef2f2; color: #b91c1c; }
.badge-row { display: flex; gap: 6px; margin-top: 4px; }

/* ============================================================
   TABLES
   ============================================================ */
.table-responsive { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { padding: 11px 14px; text-align: left; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); background: var(--bg-hover); border-bottom: 1px solid var(--border-color); white-space: nowrap; }
.data-table td { padding: 13px 14px; font-size: 13px; color: var(--text-primary); border-bottom: 1px solid var(--border-color); }
.data-table tbody tr { transition: background var(--transition); }
.data-table tbody tr:hover { background: var(--bg-hover); }
.data-table tbody tr:last-child td { border-bottom: none; }
.table-user { display: flex; align-items: center; gap: 10px; }
.table-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; font-weight: 700; font-size: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.table-name { font-size: 13px; font-weight: 600; }
.table-sub  { font-size: 11px; color: var(--text-muted); }
.table-date span { display: block; font-size: 13px; font-weight: 600; }
.table-date small { font-size: 11px; color: var(--text-muted); }
.table-actions { display: flex; gap: 4px; }
.booking-number { font-family: monospace; font-size: 12px; font-weight: 700; color: var(--primary); }
.amount-cell { font-weight: 600; font-family: monospace; }
.text-right { text-align: right; }
.total-row td { font-weight: 700; background: var(--primary-xlight); }
.discount-row td { color: var(--danger); font-size: 12px; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination-wrapper { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-top: 1px solid var(--border-color); gap: 12px; flex-wrap: wrap; }
.pagination-info { font-size: 12px; color: var(--text-muted); }
.pagination { display: flex; gap: 4px; }
.page-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); border: 1px solid var(--border-color); font-size: 12px; font-weight: 600; color: var(--text-secondary); transition: all var(--transition); }
.page-btn:hover, .page-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ============================================================
   MODALS
   ============================================================ */
.modal {
    display: none;
    position: fixed; inset: 0;
    z-index: 500;
    align-items: center; justify-content: center;
    padding: 20px;
}
.modal.open { display: flex; }
.modal-dialog {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-modal);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    display: flex; flex-direction: column;
    animation: modalIn .2s ease;
}
.modal-dialog.modal-sm { max-width: 420px; }
.modal-dialog.modal-lg { max-width: 700px; }
@keyframes modalIn { from { opacity: 0; transform: scale(.95) translateY(10px); } to { opacity: 1; transform: none; } }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px 14px; border-bottom: 1px solid var(--border-color); flex-shrink: 0; }
.modal-title { font-size: 15px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.modal-close { width: 30px; height: 30px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all var(--transition); }
.modal-close:hover { background: var(--bg-hover); color: var(--text-primary); }
.modal-body { padding: 20px; overflow-y: auto; flex: 1; }
.modal-footer { display: flex; align-items: center; justify-content: flex-end; gap: 10px; padding: 20px 20px; border-top: 1px solid var(--border-color); flex-shrink: 0; }

/* Modal booking list */
.modal-booking-list { display: flex; flex-direction: column; gap: 8px; }
.modal-booking-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--radius-md); border: 1px solid var(--border-color); color: var(--text-primary); transition: background var(--transition); }
.modal-booking-item:hover { background: var(--bg-hover); }
.mbi-time { font-size: 13px; font-weight: 700; color: var(--primary); min-width: 40px; }
.mbi-info { flex: 1; }
.mbi-info strong { display: block; font-size: 13px; }
.mbi-info small { font-size: 11px; color: var(--text-muted); }
.mbi-status { }

/* ============================================================
   BOOKING FORM SPECIFIC
   ============================================================ */
.form-grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.form-column { display: flex; flex-direction: column; }

/* Autocomplete */
.autocomplete-wrapper { position: relative; }
.autocomplete-dropdown {
    display: none;
    position: absolute; top: calc(100% + 4px); left: 0; right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 100;
    max-height: 200px; overflow-y: auto;
}
.autocomplete-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; cursor: pointer; transition: background var(--transition); }
.autocomplete-item:hover { background: var(--bg-hover); }
.ac-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--primary-xlight); color: var(--primary); font-weight: 700; font-size: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ac-info strong { display: block; font-size: 13px; }
.ac-info small { font-size: 11px; color: var(--text-muted); }
.autocomplete-empty { padding: 12px; font-size: 12px; color: var(--text-muted); text-align: center; }
.autocomplete-empty button { color: var(--primary); text-decoration: underline; cursor: pointer; background: none; border: none; font-size: 12px; }

/* Selected Customer */
.selected-customer { }
.selected-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border: 1.5px solid var(--primary); border-radius: var(--radius-md); background: var(--primary-xlight); }
.selected-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.selected-info { flex: 1; }
.selected-info strong { display: block; font-size: 13px; color: var(--text-primary); }
.selected-info small { font-size: 11px; color: var(--text-muted); }
.selected-clear { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all var(--transition); }
.selected-clear:hover { background: var(--danger-light); color: var(--danger); }

/* Date Status */
.date-status { font-size: 12px; font-weight: 500; margin-top: 5px; display: flex; align-items: center; gap: 5px; }
.date-available { color: #059669; }
.date-closed    { color: var(--danger); }
.date-full      { color: var(--warning); }

/* Package Breakdown */
.package-breakdown { background: var(--bg-hover); border-radius: var(--radius-md); padding: 14px; margin-top: 12px; }
.breakdown-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); margin-bottom: 10px; }
.breakdown-item { display: flex; justify-content: space-between; padding: 5px 0; font-size: 13px; border-bottom: 1px dashed var(--border-color); }
.breakdown-item:last-child { border-bottom: none; }
.breakdown-base { font-weight: 600; color: var(--primary); }

/* Pricing */
.pricing-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 14px; border-bottom: 1px solid var(--border-color); }
.pricing-total { font-size: 18px; font-weight: 800; color: var(--primary); border-bottom: none; border-top: 2px solid var(--border-color); padding-top: 12px; margin-top: 4px; }

/* Payment Status Buttons */
.payment-status-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.status-radio { cursor: pointer; }
.status-radio input { display: none; }
.status-radio-btn { display: block; padding: 8px 16px; border-radius: var(--radius-md); font-size: 13px; font-weight: 600; border: 2px solid var(--border-color); color: var(--text-secondary); transition: all var(--transition); cursor: pointer; }
.status-radio input:checked + .status-radio-btn.status-pending { border-color: var(--warning); background: var(--warning-light); color: #92400e; }
.status-radio input:checked + .status-radio-btn.status-partial { border-color: var(--info); background: var(--info-light); color: #1d4ed8; }
.status-radio input:checked + .status-radio-btn.status-paid    { border-color: var(--primary); background: var(--primary-xlight); color: #059669; }

/* Vendors */
.vendor-row { margin-bottom: 8px; }
.vendor-inputs { display: flex; gap: 8px; align-items: center; }
.vendor-inputs .form-control { flex: 1; }
.empty-hint { font-size: 12px; color: var(--text-muted); text-align: center; padding: 16px; border: 1.5px dashed var(--border-color); border-radius: var(--radius-md); }
.vendor-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.vendor-chip { display: flex; align-items: center; gap: 6px; padding: 6px 12px; background: var(--bg-hover); border: 1px solid var(--border-color); border-radius: 20px; font-size: 12px; }
.vendor-chip small { color: var(--text-muted); }

/* ============================================================
   BOOKING DETAIL
   ============================================================ */
.page-header-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.breadcrumb-nav { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.breadcrumb-nav a { color: var(--primary); }
.breadcrumb-nav i { font-size: 10px; }
.page-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }

.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 20px; align-items: start; }
.detail-col-main { display: flex; flex-direction: column; }
.detail-col-side { display: flex; flex-direction: column; }

.detail-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.detail-item { }
.detail-full { grid-column: 1 / -1; }
.detail-label { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); font-weight: 600; display: flex; align-items: center; gap: 5px; margin-bottom: 3px; }
.detail-value { font-size: 14px; font-weight: 500; }

.status-actions { display: flex; gap: 8px; }

/* Payment Summary */
.payment-summary { margin-bottom: 16px; }
.ps-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 13px; border-bottom: 1px solid var(--border-color); }
.ps-row:last-child { border-bottom: none; }
.text-success { color: #059669; }
.text-danger  { color: var(--danger); }
.payment-progress { }
.progress-bar { height: 6px; background: var(--border-color); border-radius: 3px; overflow: hidden; margin-bottom: 4px; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--primary-dark)); border-radius: 3px; transition: width .5s ease; }

/* Payment Timeline */
.payment-timeline { padding: 12px 16px; display: flex; flex-direction: column; gap: 10px; }
.payment-entry { display: flex; align-items: flex-start; gap: 10px; }
.pe-left { }
.pe-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--primary-xlight); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.pe-body { flex: 1; }
.pe-amount { font-size: 14px; font-weight: 700; color: var(--primary); }
.pe-meta { font-size: 11px; color: var(--text-muted); }
.pe-meta code { background: var(--bg-hover); padding: 1px 6px; border-radius: 4px; font-size: 10px; }
.pe-delete { width: 24px; height: 24px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 11px; opacity: 0; transition: all var(--transition); }
.payment-entry:hover .pe-delete { opacity: 1; }
.pe-delete:hover { color: var(--danger); background: var(--danger-light); }

/* Meta info */
.meta-info { display: flex; flex-direction: column; gap: 8px; }
.meta-item { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); }
.meta-label { font-weight: 600; }

/* ============================================================
   FILTERS
   ============================================================ */
.filter-card { }
.filter-card .card-body { padding: 14px 20px; }
.filter-grid { display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-end; }
.filter-grid .form-group { margin-bottom: 0; min-width: 160px; flex: 1; }
.filter-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 20px; text-align: center; color: var(--text-muted); gap: 12px; }
.empty-state i { font-size: 48px; opacity: .3; }
.empty-state h4 { font-size: 16px; font-weight: 700; color: var(--text-secondary); }
.empty-state p { font-size: 13px; }
.empty-state-sm { display: flex; flex-direction: column; align-items: center; padding: 30px 20px; color: var(--text-muted); gap: 8px; }
.empty-state-sm i { font-size: 28px; opacity: .3; }
.empty-state-sm p { font-size: 12px; }

/* ============================================================
   ALERTS
   ============================================================ */
.alert { padding: 12px 14px; border-radius: var(--radius-md); font-size: 13px; display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.alert-danger  { background: var(--danger-light);  color: #b91c1c; border: 1px solid #fecaca; }
.alert-success { background: var(--success-light); color: #065f46; border: 1px solid #6ee7b7; }
.alert-warning { background: var(--warning-light); color: #92400e; border: 1px solid #fcd34d; }
.alert-info    { background: var(--info-light);    color: #1d4ed8; border: 1px solid #93c5fd; }

/* ============================================================
   AUTH PAGE
   ============================================================ */
.auth-page { background: var(--bg-page); }
.auth-wrapper { display: grid; grid-template-columns: 480px 1fr; min-height: 100vh; }
.auth-brand-panel {
    background: #000000;
    padding: 50px 48px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
}
.auth-brand-content { position: relative; z-index: 1; }
.auth-logo { margin-bottom: 28px; }
.auth-logo img { max-height: 70px; }
.auth-logo-icon { width: 60px; height: 60px; background: rgba(255,255,255,.2); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #fff; }
.auth-brand-panel h2 { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.auth-brand-panel p { color: rgba(255,255,255,.8); font-size: 14px; line-height: 1.7; margin-bottom: 36px; }
.auth-features { display: flex; flex-direction: column; gap: 14px; }
.auth-feature { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.9); font-size: 14px; }
.auth-feature i { width: 36px; height: 36px; background: rgba(255,255,255,.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.auth-brand-pattern { position: absolute; bottom: -50px; right: -50px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.05); }

.auth-form-panel { display: flex; align-items: center; justify-content: center; padding: 40px; background: var(--bg-card); }
.auth-form-container { width: 100%; max-width: 400px; }
.auth-form-header { margin-bottom: 28px; }
.auth-form-header h1 { font-size: 26px; font-weight: 800; color: var(--text-primary); margin-bottom: 6px; }
.auth-form-header p { font-size: 14px; color: var(--text-muted); }
.btn-block .btn-loading { display: inline-flex; align-items: center; gap: 7px; }
.auth-footer { text-align: center; margin-top: 20px; color: var(--text-muted); }
.mt-2 { margin-top: 8px; }

/* ============================================================
   LOADING
   ============================================================ */
.loading-spinner { display: flex; justify-content: center; padding: 30px; color: var(--text-muted); font-size: 20px; }

/* ============================================================
   REPORTS
   ============================================================ */
.report-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.report-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 20px; text-align: center; transition: all var(--transition); }
.report-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.report-card a { text-decoration: none; color: var(--text-primary); }
.report-icon { width: 50px; height: 50px; border-radius: var(--radius-md); margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.rc-bookings .report-icon { background: var(--primary-xlight); color: var(--primary); }
.rc-revenue  .report-icon { background: var(--success-light); color: #059669; }
.rc-payments .report-icon { background: var(--warning-light); color: var(--warning); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .dashboard-grid { grid-template-columns: 1fr; }
    .form-grid-2col { grid-template-columns: 1fr; }
    .detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    :root { --sidebar-width: 260px; }
    .sidebar { transform: translateX(-100%); }
    .sidebar.open { transform: translateX(0); }
    .sidebar-close-btn { display: flex; }
    .sidebar-overlay.active { display: block; }
    .main-wrapper { margin-left: 0; }
    .topbar-toggle { display: flex; }
    .auth-wrapper { grid-template-columns: 1fr; }
    .auth-brand-panel { display: none; }
}

@media (max-width: 600px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .page-content { padding: 16px; }
    .filter-grid { flex-direction: column; }
    .filter-grid .form-group { min-width: unset; }
    .form-row-2 { grid-template-columns: 1fr; }
    .detail-grid-2 { grid-template-columns: 1fr; }
    .pagination-wrapper { flex-direction: column; text-align: center; }
}

@media (max-width: 400px) {
    .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.d-none { display: none; }
.d-md-inline { display: none; }
@media (min-width: 768px) { .d-md-inline { display: inline; } }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-primary-color { color: var(--primary); }
.mt-2 { margin-top: 8px; }
.mb-0 { margin-bottom: 0; }
.gap-2 { gap: 8px; }
.capitalize { text-transform: capitalize; }
