/* FCTL Dashboard Styles */

/* ============================================================================
   FONTS & CSS VARIABLES
   ============================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* Brand Colors - Teal primary */
    --primary: #0d9488;
    --primary-dark: #0f766e;
    --primary-light: #14b8a6;
    --primary-subtle: rgba(13, 148, 136, 0.1);
    
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    
    /* Light theme colors */
    --bg-body: #f8fafc;
    --bg-white: #ffffff;
    --bg-card: #ffffff;
    --bg-surface: #f1f5f9;
    --bg-hover: #e2e8f0;
    
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    
    /* Status Colors */
    --success: #10b981;
    --success-bg: rgba(16, 185, 129, 0.1);
    --warning: #f59e0b;
    --warning-bg: rgba(245, 158, 11, 0.1);
    --danger: #ef4444;
    --danger-bg: rgba(239, 68, 68, 0.1);
    --info: #3b82f6;
    --info-bg: rgba(59, 130, 246, 0.1);
    
    /* Layout */
    --sidebar-width: 260px;
    --sidebar-bg: #1e293b;
    --header-height: 64px;
    --border-radius: 10px;
    --border-radius-sm: 6px;
    --border-radius-lg: 14px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
}

/* ============================================================================
   BASE STYLES
   ============================================================================ */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

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

/* ============================================================================
   SIDEBAR - Keeping dark for contrast
   ============================================================================ */
.sidebar {
    width: var(--sidebar-width);
    min-width: var(--sidebar-width);
    background: var(--sidebar-bg);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    transition: transform var(--transition-base);
}

.sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h3 {
    margin: 0;
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-light);
    letter-spacing: -0.5px;
}

.sidebar-header small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.sidebar .nav {
    padding: 16px 12px;
}

.sidebar .nav-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 2px;
    transition: all var(--transition-fast);
    font-weight: 500;
    font-size: 14px;
}

.sidebar .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.sidebar .nav-link.active {
    color: #fff;
    background: var(--primary);
}

.sidebar .nav-link i {
    font-size: 18px;
    width: 22px;
    text-align: center;
}

.sidebar .nav-section-header {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    padding: 16px 16px 8px;
}

.sidebar .border-top {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.sidebar .text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ============================================================================
   MAIN CONTENT
   ============================================================================ */
#content {
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    min-height: 100vh;
    background: var(--bg-body);
}

/* Top Navbar */
#content .navbar {
    background: var(--bg-white) !important;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
}

.navbar .btn-link {
    color: var(--text-secondary) !important;
}

.navbar .dropdown-toggle {
    color: var(--text-primary) !important;
    font-weight: 500;
}

/* Main container */
main.container-fluid {
    padding: 24px 32px;
    max-width: 1400px;
}

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

.card-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 20px;
    font-weight: 600;
}

.card-body {
    padding: 20px;
}

.card-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    padding: 12px 20px;
}

/* Hero Stats Card */
.stat-card-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: var(--border-radius-lg);
    color: white;
    position: relative;
    overflow: hidden;
}

.stat-card-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stat-card-hero .display-value {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    letter-spacing: -2px;
    line-height: 1.1;
}

.stat-card-hero .stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Mini Stat Cards */
.stat-card-mini {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    transition: all var(--transition-base);
}

.stat-card-mini:hover {
    box-shadow: var(--shadow-md);
}

.stat-card-mini .stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.stat-card-mini .stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 4px;
}

.stat-card-mini .stat-subtext {
    font-size: 12px;
    color: var(--text-muted);
}

.stat-card-mini.success { border-left: 3px solid var(--success); }
.stat-card-mini.warning { border-left: 3px solid var(--warning); }
.stat-card-mini.danger { border-left: 3px solid var(--danger); }
.stat-card-mini.info { border-left: 3px solid var(--info); }

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 600;
}

p {
    color: var(--text-secondary);
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-secondary {
    color: var(--text-secondary) !important;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */
.btn {
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    padding: 8px 16px;
    transition: all var(--transition-fast);
    font-size: 14px;
}

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

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

.btn-outline-primary {
    color: var(--primary);
    border: 1px solid var(--primary);
    background: transparent;
}

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

.btn-secondary {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-success {
    background: var(--success);
    border: none;
    color: white;
}

.btn-danger {
    background: var(--danger);
    border: none;
    color: white;
}

.btn-warning {
    background: var(--warning);
    border: none;
    color: white;
}

.btn-link {
    color: var(--primary);
    text-decoration: none;
    padding: 4px 8px;
}

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

.btn-light {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.btn-light:hover {
    background: var(--bg-hover);
    border-color: var(--border-color);
    color: var(--text-primary);
}

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

.btn-outline-secondary:hover {
    background: var(--bg-surface);
    border-color: var(--border-color);
    color: var(--text-primary);
}

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

.btn-outline-warning:hover {
    background: var(--warning-bg);
    border-color: var(--warning);
    color: #b45309;
}

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

.btn-outline-danger:hover {
    background: var(--danger-bg);
    border-color: var(--danger);
    color: #b91c1c;
}

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

.btn-outline-success:hover {
    background: var(--success-bg);
    border-color: var(--success);
    color: #047857;
}

/* Button Groups */
.btn-group > .btn {
    border-radius: 0;
}

.btn-group > .btn:first-child {
    border-top-left-radius: var(--border-radius-sm);
    border-bottom-left-radius: var(--border-radius-sm);
}

.btn-group > .btn:last-child {
    border-top-right-radius: var(--border-radius-sm);
    border-bottom-right-radius: var(--border-radius-sm);
}

.btn-group > .btn:not(:first-child) {
    margin-left: -1px;
}

.btn-group-sm > .btn {
    padding: 0.35rem 0.5rem;
    font-size: 13px;
}

/* Action button sizes */
.btn-sm {
    padding: 0.35rem 0.6rem;
    font-size: 13px;
}

/* Table action buttons */
.table .btn-sm {
    padding: 0.3rem 0.5rem;
}

/* Order arrows - minimal styling */
.table .btn-link {
    text-decoration: none;
    line-height: 1;
}

.table .btn-link:hover {
    color: var(--primary) !important;
}

/* Ensure action buttons stay inline */
.table td[style*="nowrap"] .btn,
.table td[style*="nowrap"] form {
    display: inline-block;
    vertical-align: middle;
}

/* Ensure buttons are properly spaced */
.table td .btn + .btn,
.table td form + form,
.table td .btn + form,
.table td form + .btn {
    margin-left: 0.35rem;
}

/* ============================================================================
   FORMS
   ============================================================================ */
.form-control,
.form-select {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: var(--border-radius-sm);
    padding: 10px 14px;
    font-size: 14px;
    transition: all var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    background: var(--bg-white);
    border-color: var(--primary);
    color: var(--text-primary);
    box-shadow: 0 0 0 3px var(--primary-subtle);
    outline: none;
}

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

.form-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 6px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    background-color: var(--bg-white);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px var(--primary-subtle);
}

.form-check-label {
    color: var(--text-secondary);
    padding-left: 4px;
}

/* Input Groups - Fix the search box issue */
.input-group {
    position: relative;
}

.input-group .input-group-text {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-right: none;
    color: var(--text-muted);
    padding: 10px 12px;
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    border-color: var(--border-color);
    box-shadow: none;
}

.input-group:focus-within {
    border-radius: var(--border-radius-sm);
    box-shadow: 0 0 0 3px var(--primary-subtle);
}

.input-group:focus-within .input-group-text {
    border-color: var(--primary);
}

.input-group:focus-within .form-control {
    border-color: var(--primary);
}

/* ============================================================================
   TABLES
   ============================================================================ */
.table {
    color: var(--text-primary);
    margin-bottom: 0;
}

.table th {
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 16px;
    background: var(--bg-surface);
}

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

.table tbody tr:last-child td {
    border-bottom: none;
}

.table-hover tbody tr:hover {
    background: var(--bg-surface);
}

/* ============================================================================
   BADGES
   ============================================================================ */
.badge {
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 11px;
}

.bg-primary { background: var(--primary) !important; color: white !important; }
.bg-success { background: var(--success) !important; color: white !important; }
.bg-warning { background: var(--warning) !important; color: white !important; }
.bg-danger { background: var(--danger) !important; color: white !important; }
.bg-info { background: var(--info) !important; color: white !important; }
.bg-secondary { background: #64748b !important; color: white !important; }
.bg-light { background: var(--bg-surface) !important; color: var(--text-primary) !important; }
.bg-dark { background: var(--sidebar-bg) !important; color: white !important; }

.text-dark { color: var(--text-primary) !important; }

.bg-purple { background: #8b5cf6 !important; color: white !important; }

/* Status Badges */
.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.badge-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.badge-status.won { background: var(--success-bg); color: var(--success); }
.badge-status.lost { background: var(--danger-bg); color: var(--danger); }
.badge-status.pending { background: var(--warning-bg); color: #b45309; }
.badge-status.active { background: var(--info-bg); color: var(--info); }

/* ============================================================================
   PROGRESS BARS
   ============================================================================ */
.progress {
    background: var(--bg-surface);
    border-radius: 20px;
    overflow: hidden;
    height: 8px;
}

.progress-bar {
    background: var(--primary);
    border-radius: 20px;
}

.progress-bar.bg-success { background: var(--success) !important; }
.progress-bar.bg-warning { background: var(--warning) !important; }
.progress-bar.bg-danger { background: var(--danger) !important; }

/* ============================================================================
   KANBAN BOARD
   ============================================================================ */
.kanban-board {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;
    min-height: 500px;
}

.kanban-column {
    min-width: 290px;
    max-width: 290px;
    background: var(--bg-surface);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
}

.kanban-column-header {
    padding: 14px 16px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.kanban-column-header h6 {
    margin: 0;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-secondary);
}

.kanban-column-body {
    padding: 12px;
    flex: 1;
    overflow-y: auto;
    min-height: 400px;
}

.kanban-column-body.drag-over {
    background: var(--primary-subtle);
}

.kanban-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 14px;
    margin-bottom: 10px;
    cursor: grab;
    transition: all var(--transition-fast);
}

.kanban-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.kanban-card.dragging {
    opacity: 0.5;
}

.kanban-card-title {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-primary);
    line-height: 1.4;
}

.kanban-card-meta {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================================================
   LIST ITEMS & ACTIVITY FEED
   ============================================================================ */
.list-group {
    border-radius: var(--border-radius);
}

.list-group-item {
    background: var(--bg-white);
    border: none;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
    padding: 16px 20px;
}

.list-group-item:last-child {
    border-bottom: none;
}

.list-group-item:hover,
.list-group-item-action:hover {
    background: var(--bg-surface);
}

/* Activity Feed */
.activity-feed .activity-item {
    position: relative;
}

.activity-feed .activity-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    color: var(--text-muted);
    flex-shrink: 0;
}

.activity-item p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.activity-item strong {
    color: var(--text-primary);
}

/* ============================================================================
   DROPDOWNS
   ============================================================================ */
.dropdown-menu {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 6px;
    min-width: 180px;
    z-index: 1050;
}

/* Ensure dropdown appears above table rows */
.table .dropdown-menu {
    position: absolute;
}

.dropdown-item {
    color: var(--text-secondary);
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    transition: all var(--transition-fast);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: var(--bg-surface);
    color: var(--text-primary);
}

.dropdown-item.text-danger:hover {
    background: var(--danger-bg);
    color: var(--danger);
}

.dropdown-item.text-success:hover {
    background: var(--success-bg);
    color: var(--success);
}

.dropdown-item-text {
    color: var(--text-muted);
    padding: 8px 12px;
    font-size: 13px;
}

.dropdown-divider {
    border-color: var(--border-light);
    margin: 6px 0;
}

/* ============================================================================
   ALERTS
   ============================================================================ */
.alert {
    border: none;
    border-radius: var(--border-radius-sm);
    padding: 14px 18px;
    font-size: 14px;
}

.alert-success {
    background: var(--success-bg);
    color: #065f46;
}

.alert-warning {
    background: var(--warning-bg);
    color: #92400e;
}

.alert-danger {
    background: var(--danger-bg);
    color: #991b1b;
}

.alert-info {
    background: var(--info-bg);
    color: #1e40af;
}

/* ============================================================================
   TABS
   ============================================================================ */
.nav-tabs {
    border-bottom: 1px solid var(--border-color);
    gap: 0;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--text-muted);
    padding: 12px 20px;
    margin-bottom: -1px;
    font-weight: 500;
    font-size: 14px;
    transition: all var(--transition-fast);
    border-bottom: 2px solid transparent;
}

.nav-tabs .nav-link:hover {
    color: var(--text-primary);
    border-color: transparent;
    background: transparent;
}

.nav-tabs .nav-link.active {
    color: var(--primary);
    background: transparent;
    border-bottom: 2px solid var(--primary);
}

/* ============================================================================
   MODALS
   ============================================================================ */
.modal-content {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 24px;
}

.modal-title {
    font-weight: 600;
    color: var(--text-primary);
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 16px 24px;
}

.btn-close {
    opacity: 0.5;
}

.btn-close:hover {
    opacity: 1;
}

/* ============================================================================
   PAGINATION
   ============================================================================ */
.pagination {
    gap: 4px;
}

.page-link {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: var(--border-radius-sm) !important;
    padding: 8px 14px;
    font-weight: 500;
}

.page-link:hover {
    background: var(--bg-surface);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

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

/* ============================================================================
   AUTH PAGES
   ============================================================================ */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background: var(--sidebar-bg);
}

.auth-card {
    background: var(--bg-white);
    padding: 48px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 420px;
}

.auth-logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -1px;
}

/* Auth page alerts - better contrast on dark background */
.auth-alerts .alert {
    background: white;
    color: #1e293b;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.auth-alerts .btn-close {
    filter: none;
    opacity: 0.5;
}

.auth-alerts .btn-close:hover {
    opacity: 1;
}

/* ============================================================================
   AVATAR
   ============================================================================ */
.avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

/* ============================================================================
   STATUS ICONS (Documents)
   ============================================================================ */
.status-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 992px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    #content {
        margin-left: 0;
        width: 100%;
    }
    
    main.container-fluid {
        padding: 16px;
    }
}

/* ============================================================================
   UTILITIES
   ============================================================================ */
.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.country-flag {
    font-size: 1.1em;
}

/* Links */
a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: var(--primary-dark);
}

/* Upload zone */
.upload-zone {
    border: 2px dashed var(--border-color) !important;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.upload-zone:hover {
    border-color: var(--primary) !important;
    background: var(--primary-subtle);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-surface);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}
