/* ============================================================
   STFF.BY — ADMIN PANEL PRO DARK BENTO THEME
   Based on KAZ.HOLIDAY admin-pro-theme v1.32.0
   Dark obsidian canvas, amber-gold accents, Bootstrap 5
   ============================================================ */

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

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    --brand-primary:    #f59e0b;
    --brand-deep:       #060a12;
    --brand-accent:     #d4af37;
    --brand-gradient:   linear-gradient(135deg, #f59e0b 0%, #d4af37 100%);

    --sidebar-w:        260px;
    --sidebar-bg:       #060a12;
    --sidebar-border:   rgba(255,255,255,0.08);
    --sidebar-link:     #94a3b8;
    --sidebar-link-hover: #ffffff;

    --bg-app:           #090d16;
    --bg-card:          rgba(30, 41, 59, 0.82);
    --border-soft:      rgba(255, 255, 255, 0.14);
    --border-light:     rgba(255, 255, 255, 0.08);
    --text-primary:     #f8fafc;
    --text-secondary:   #e2e8f0;
    --text-muted:       #94a3b8;

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

    --shadow-sm:  0 2px 8px rgba(0,0,0,0.35);
    --shadow-md:  0 8px 24px rgba(0,0,0,0.45);
    --shadow-lg:  0 16px 40px rgba(0,0,0,0.55);
    --shadow-xl:  0 24px 60px rgba(0,0,0,0.65);

    --topbar-h: 68px;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg-app) !important;
    color: var(--text-primary);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

/* Custom dark scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #090d16; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(245, 158, 11, 0.5); }

/* ============================================================
   SHELL & LAYOUT
   ============================================================ */
.admin-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-app);
}

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

/* ============================================================
   MOBILE TOPBAR
   ============================================================ */
.admin-topbar {
    height: var(--topbar-h);
    background: rgba(6, 10, 18, 0.95);
    border-bottom: 1px solid var(--sidebar-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 1020;
}

.topbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.topbar-badge {
    font-size: 0.6rem;
    font-weight: 800;
    background: var(--brand-gradient);
    color: #000000;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    margin-left: 6px;
}

.topbar-toggle {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: #ffffff;
    padding: 6px 12px;
    font-size: 1.1rem;
}

/* ============================================================
   DESKTOP SIDEBAR
   ============================================================ */
.admin-sidebar {
    width: var(--sidebar-w);
    min-width: var(--sidebar-w);
    background: var(--sidebar-bg);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    border-right: 1px solid var(--sidebar-border);
    z-index: 200;
    flex-shrink: 0;
}

.sidebar-logo {
    padding: 1.25rem 1.5rem 1rem;
    border-bottom: 1px solid var(--sidebar-border);
    flex-shrink: 0;
}

.sidebar-logo .brand-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.badge-admin {
    font-size: 0.6rem;
    font-weight: 800;
    background: var(--brand-gradient);
    color: #000000;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem 0 2rem;
    scrollbar-width: none;
}

.sidebar-nav::-webkit-scrollbar { display: none; }

.sidebar-section-title {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    padding: 0 1.25rem;
    margin: 1.1rem 0 0.35rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.1rem;
    margin: 0.1rem 0.6rem;
    color: var(--sidebar-link);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.18s ease;
    position: relative;
}

.sidebar-link i {
    font-size: 1rem;
    flex-shrink: 0;
    opacity: 0.75;
}

.sidebar-link:hover {
    background: rgba(255,255,255,0.06);
    color: var(--sidebar-link-hover);
    padding-left: 1.35rem;
}

.sidebar-link.active {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.22) 0%, rgba(212, 175, 55, 0.12) 100%);
    color: #f59e0b;
    font-weight: 700;
    border: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.12);
}

.sidebar-link.active i {
    color: #f59e0b;
    opacity: 1;
}

/* ============================================================
   DESKTOP TOPBAR (inside content)
   ============================================================ */
.admin-desktop-topbar {
    height: var(--topbar-h);
    background: rgba(9, 13, 22, 0.9) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* ============================================================
   MAIN CONTENT CONTAINER
   ============================================================ */
.admin-content {
    flex: 1;
    overflow-y: auto;
    min-width: 0;
    background: var(--bg-app);
}

.admin-content-inner {
    padding: 1.75rem 2rem;
    max-width: 1600px;
}

@media (min-width: 1280px) {
    .admin-content-inner {
        padding: 2rem 2.5rem;
    }
}

/* ============================================================
   STAT CARDS & BENTO CARDS
   ============================================================ */
.card {
    background: rgba(30, 41, 59, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px !important;
    color: #ffffff;
}

.stat-card {
    background: rgba(30, 41, 59, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245, 158, 11, 0.3);
}

.stat-card-premium {
    transition: all 0.25s ease;
    cursor: pointer;
}

.stat-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4) !important;
}

/* ============================================================
   GLOBAL DARK OVERRIDES FOR BOOTSTRAP UTILITIES IN ADMIN
   ============================================================ */
.admin-shell .bg-white {
    background: rgba(30, 41, 59, 0.75) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

.admin-shell .bg-light {
    background: rgba(15, 23, 42, 0.6) !important;
    color: #cbd5e1 !important;
}

.admin-shell .text-dark { color: #090d16 !important; }
.admin-shell .text-muted { color: #94a3b8 !important; }

/* ============================================================
   BENTO ICON BOXES & BADGES — CRISP TRANSLUCENT WITH CONTRAST
   ============================================================ */
.bento-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 14px;
}

.bento-icon-gold,
.bento-icon-warning {
    background: rgba(245, 158, 11, 0.16) !important;
    border: 1px solid rgba(245, 158, 11, 0.45) !important;
    color: #fbbf24 !important;
}
.bento-icon-gold i,
.bento-icon-warning i {
    color: #fbbf24 !important;
}

.bento-icon-success,
.bento-icon-green {
    background: rgba(16, 185, 129, 0.16) !important;
    border: 1px solid rgba(16, 185, 129, 0.45) !important;
    color: #34d399 !important;
}
.bento-icon-success i,
.bento-icon-green i {
    color: #34d399 !important;
}

.bento-icon-info,
.bento-icon-cyan {
    background: rgba(56, 189, 248, 0.16) !important;
    border: 1px solid rgba(56, 189, 248, 0.45) !important;
    color: #38bdf8 !important;
}
.bento-icon-info i,
.bento-icon-cyan i {
    color: #38bdf8 !important;
}

.bento-icon-purple {
    background: rgba(168, 85, 247, 0.16) !important;
    border: 1px solid rgba(168, 85, 247, 0.45) !important;
    color: #c084fc !important;
}
.bento-icon-purple i {
    color: #c084fc !important;
}

/* Universal text helpers */
.admin-shell .text-success { color: #34d399 !important; }
.admin-shell .text-info { color: #38bdf8 !important; }
.admin-shell .text-warning { color: #fbbf24 !important; }
.admin-shell .text-danger { color: #f87171 !important; }

.admin-shell .badge {
    letter-spacing: 0.3px;
    font-weight: 700;
}

.admin-shell .badge.bg-warning {
    background-color: rgba(245, 158, 11, 0.22) !important;
    border: 1px solid rgba(245, 158, 11, 0.45) !important;
    color: #fbbf24 !important;
}

.admin-shell .badge.bg-info {
    background-color: rgba(56, 189, 248, 0.22) !important;
    border: 1px solid rgba(56, 189, 248, 0.45) !important;
    color: #38bdf8 !important;
}

.admin-shell .badge.bg-success {
    background-color: rgba(52, 211, 153, 0.22) !important;
    border: 1px solid rgba(52, 211, 153, 0.45) !important;
    color: #34d399 !important;
}

.admin-shell .badge.bg-danger {
    background-color: rgba(239, 68, 68, 0.22) !important;
    border: 1px solid rgba(239, 68, 68, 0.45) !important;
    color: #f87171 !important;
}

.admin-shell .badge.bg-secondary {
    background-color: rgba(148, 163, 184, 0.2) !important;
    border: 1px solid rgba(148, 163, 184, 0.35) !important;
    color: #e2e8f0 !important;
}

.admin-shell .card-header {
    background: rgba(15, 23, 42, 0.8) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    padding: 1.25rem 1.75rem !important;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
}

.admin-shell .card-body {
    padding: 1.75rem !important;
}

.admin-shell .card-footer {
    background: rgba(15, 23, 42, 0.8) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    padding: 1.25rem 1.75rem !important;
    border-bottom-left-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
}

.admin-shell label,
.admin-shell .form-label {
    margin-bottom: 0.55rem;
    font-weight: 700;
    color: #e2e8f0;
    font-size: 0.88rem;
    letter-spacing: 0.2px;
}

/* Universal Dark Form Inputs across all admin views */
.admin-shell .form-control,
.admin-shell .form-select,
.admin-shell .form-input,
.admin-shell .form-textarea,
.admin-shell input[type="text"],
.admin-shell input[type="email"],
.admin-shell input[type="password"],
.admin-shell input[type="number"],
.admin-shell input[type="search"],
.admin-shell textarea,
.admin-shell select {
    background-color: rgba(30, 41, 59, 0.9) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border-radius: 12px;
    font-size: 0.95rem;
    padding: 0.7rem 1.05rem;
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s;
}

.admin-shell input::placeholder,
.admin-shell textarea::placeholder,
.admin-shell .form-control::placeholder,
.admin-shell .form-input::placeholder {
    color: #94a3b8 !important;
    opacity: 1 !important;
    font-size: 0.9rem;
}

.admin-shell .form-control:focus,
.admin-shell .form-select:focus,
.admin-shell .form-input:focus,
.admin-shell .form-textarea:focus,
.admin-shell input:focus,
.admin-shell textarea:focus,
.admin-shell select:focus {
    background-color: rgba(30, 41, 59, 1) !important;
    border-color: #fbbf24 !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.25rem rgba(251, 191, 36, 0.25) !important;
}

.admin-shell select option,
.admin-shell .form-select option {
    background: #0f172a !important;
    color: #f8fafc !important;
    padding: 10px;
}

/* Universal Buttons */
.admin-shell .btn-gold,
.admin-shell .btn-primary {
    background: var(--brand-gradient) !important;
    color: #000000 !important;
    border: none !important;
    font-weight: 700;
    border-radius: 10px;
    padding: 0.5rem 1.25rem;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
}

.admin-shell .btn-gold:hover,
.admin-shell .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.35);
}

.admin-shell .btn-secondary,
.admin-shell .btn-dark,
.admin-shell .btn-ghost {
    background: rgba(30, 41, 59, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #f8fafc !important;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s;
}

.admin-shell .btn-secondary:hover,
.admin-shell .btn-dark:hover,
.admin-shell .btn-ghost:hover {
    background: rgba(45, 60, 85, 0.95) !important;
    border-color: #f59e0b !important;
    color: #ffffff !important;
}

.admin-shell .btn-outline-warning {
    background: rgba(245, 158, 11, 0.12) !important;
    border: 1.5px solid rgba(245, 158, 11, 0.5) !important;
    color: #fbbf24 !important;
    transition: all 0.2s ease !important;
}

.admin-shell .btn-outline-warning:hover,
.admin-shell .btn-outline-warning:focus,
.admin-shell .btn-outline-warning:active {
    background: linear-gradient(135deg, #f59e0b 0%, #d4af37 100%) !important;
    border-color: #f59e0b !important;
    color: #090d16 !important;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35) !important;
}

.admin-shell .btn-outline-warning:hover i,
.admin-shell .btn-outline-warning:hover span,
.admin-shell .btn-outline-warning:focus i,
.admin-shell .btn-outline-warning:focus span {
    color: #090d16 !important;
}

.admin-shell .btn-outline-dark {
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

.admin-shell .btn-outline-dark:hover {
    background: rgba(245, 158, 11, 0.2) !important;
    border-color: #f59e0b !important;
    color: #f59e0b !important;
}

/* ============================================================
   BADGES — HIGH CONTRAST
   ============================================================ */
.admin-shell .badge.bg-info {
    background-color: rgba(56, 189, 248, 0.2) !important;
    border: 1px solid rgba(56, 189, 248, 0.4) !important;
    color: #38bdf8 !important;
}

.admin-shell .badge.bg-danger {
    background-color: rgba(239, 68, 68, 0.2) !important;
    border: 1px solid rgba(239, 68, 68, 0.4) !important;
    color: #f87171 !important;
}

.admin-shell .badge.bg-success {
    background-color: rgba(52, 211, 153, 0.2) !important;
    border: 1px solid rgba(52, 211, 153, 0.4) !important;
    color: #34d399 !important;
}

.admin-shell .badge.bg-warning {
    background-color: rgba(245, 158, 11, 0.2) !important;
    border: 1px solid rgba(245, 158, 11, 0.4) !important;
    color: #f59e0b !important;
}

/* ============================================================
   TABLES — DARK UNIVERSAL STYLING WITH HIGH CONTRAST & PADDING
   ============================================================ */
.admin-shell .table {
    --bs-table-bg: transparent !important;
    --bs-table-striped-bg: rgba(255, 255, 255, 0.02) !important;
    --bs-table-hover-bg: rgba(255, 255, 255, 0.05) !important;
    --bs-table-color: #f8fafc !important;
    --bs-table-border-color: rgba(255, 255, 255, 0.09) !important;
    color: #f8fafc !important;
    background-color: transparent !important;
    border-color: rgba(255, 255, 255, 0.09) !important;
    vertical-align: middle;
}

.admin-shell .table > :not(caption) > * > * {
    background-color: transparent !important;
    color: #f8fafc !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09) !important;
    padding: 1.15rem 1.4rem !important;
    font-size: 0.92rem;
}

.admin-shell .table thead th {
    background: rgba(15, 23, 42, 0.85) !important;
    color: #e2e8f0 !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.14) !important;
    padding: 1.15rem 1.4rem !important;
}

.admin-shell .table tbody tr:hover td {
    background-color: rgba(255, 255, 255, 0.04) !important;
}

/* ============================================================
   MODALS WITH SPACIOUS PADDING
   ============================================================ */
.admin-shell .modal-content {
    background: #0b1329 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 26px !important;
    box-shadow: 0 25px 60px rgba(0,0,0,0.75) !important;
}

.admin-shell .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: rgba(15, 23, 42, 0.85) !important;
    padding: 1.5rem 2rem !important;
}

.admin-shell .modal-body {
    padding: 2rem !important;
}

.admin-shell .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: rgba(15, 23, 42, 0.75) !important;
    padding: 1.25rem 2rem !important;
}

/* ============================================================
   NAV TABS & PILLS — OBSIDIAN BENTO DARK STYLING
   ============================================================ */
.admin-shell .nav-tabs {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    gap: 8px;
}

.admin-shell .nav-tabs .nav-item {
    margin-bottom: -1px;
}

.admin-shell .nav-tabs .nav-link {
    color: #94a3b8 !important;
    background: rgba(15, 23, 42, 0.6) !important;
    border: 1px solid transparent !important;
    border-bottom: 3px solid transparent !important;
    padding: 0.9rem 1.6rem !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    border-top-left-radius: 14px !important;
    border-top-right-radius: 14px !important;
    transition: all 0.2s ease !important;
}

.admin-shell .nav-tabs .nav-link i {
    color: #94a3b8 !important;
    transition: color 0.2s ease;
}

.admin-shell .nav-tabs .nav-link:hover {
    color: #ffffff !important;
    background: rgba(30, 41, 59, 0.8) !important;
    border-color: rgba(255, 255, 255, 0.08) rgba(255, 255, 255, 0.08) transparent !important;
}

.admin-shell .nav-tabs .nav-link:hover i {
    color: #fbbf24 !important;
}

.admin-shell .nav-tabs .nav-link.active {
    color: #fbbf24 !important;
    background: rgba(30, 41, 59, 1) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-bottom: 3px solid #f59e0b !important;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.4) !important;
}

.admin-shell .nav-tabs .nav-link.active i {
    color: #fbbf24 !important;
}

/* ============================================================
   PULSE INDICATOR
   ============================================================ */
.pulse-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 rgba(52, 211, 153, 0.6);
    animation: pulse-anim 2s infinite;
}

@keyframes pulse-anim {
    0%   { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

/* ============================================================
   SYSTEM CHANGELOG & TIMELINE STYLING
   ============================================================ */
.changelog-item {
    background: rgba(30, 41, 59, 0.92) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 20px !important;
    padding: 1.75rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
    transition: transform 0.2s ease, border-color 0.2s ease !important;
}

.changelog-item:hover {
    transform: translateY(-2px);
    border-color: rgba(245, 158, 11, 0.4) !important;
}

.changelog-note {
    color: #e2e8f0 !important;
    font-size: 0.94rem !important;
    line-height: 1.7 !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.admin-page-footer {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.admin-page-footer .footer-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.88rem;
    color: #cbd5e1;
}

.admin-page-footer .footer-version {
    font-size: 0.78rem;
    color: #64748b;
}

.admin-page-footer .footer-version .version-chip {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #f59e0b;
}

/* ============================================================
   KANBAN CARDS (CRM)
   ============================================================ */
.kanban-board {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.kanban-col {
    min-width: 220px;
    width: 220px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.kanban-col-header {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kanban-col-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #f1f5f9;
}

.kanban-col-body {
    padding: 0.5rem;
    min-height: 120px;
    max-height: 380px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.lead-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 0.65rem 0.85rem;
    cursor: grab;
    transition: all 0.15s ease;
    font-size: 0.82rem;
}

.lead-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-gold { color: #f59e0b !important; }
.bg-gold   { background: var(--brand-gradient) !important; color: #000 !important; }
.border-gold { border-color: rgba(245,158,11,0.3) !important; }

.x-small { font-size: 0.72rem; }
.font-outfit { font-family: 'Outfit', sans-serif !important; }

/* ============================================================
   ADMIN MOBILE RESPONSIVE POLISH
   ============================================================ */
@media (max-width: 991px) {
    .admin-content-inner {
        padding: 1rem 0.875rem 4rem !important;
    }
    .stat-card {
        padding: 1.1rem 1.25rem !important;
    }
    .page-header-actions {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.75rem !important;
    }
    .card {
        border-radius: 16px !important;
    }
    .table-responsive {
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        -webkit-overflow-scrolling: touch;
    }
    .table > :not(caption) > * > * {
        padding: 0.65rem 0.75rem !important;
        font-size: 0.82rem !important;
    }
    .kanban-board {
        gap: 0.75rem !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    .kanban-col {
        scroll-snap-align: start;
        flex: 0 0 280px !important;
        min-width: 280px !important;
    }
    .offcanvas {
        background: #060a12 !important;
        color: #ffffff !important;
        box-shadow: 0 0 40px rgba(0,0,0,0.8);
    }
    .offcanvas-backdrop.show {
        background-color: rgba(6, 10, 18, 0.8) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
    }
}

@media (max-width: 576px) {
    .admin-content-inner {
        padding: 0.85rem 0.65rem 4.5rem !important;
    }
    .admin-topbar {
        height: 56px;
        padding-left: 0.85rem !important;
        padding-right: 0.85rem !important;
    }
    .topbar-brand {
        font-size: 1.05rem;
    }
    h1, .h3 {
        font-size: 1.35rem !important;
    }
    h2, .h4 {
        font-size: 1.15rem !important;
    }
}
