/* ========================================
   ÉGIDE SAÚDE CRM - DESIGN SYSTEM
   ======================================== */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - Égide Saúde */
    --brand-green: #4CAF50;
    --brand-green-dark: #388E3C;
    --brand-green-light: #C8E6C9;

    /* Gray Scale */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Status Colors */
    --status-lead: #3B82F6;
    --status-negociacao: #F59E0B;
    --status-fechado: #10B981;

    /* Functional Colors */
    --danger: #EF4444;
    --warning: #F59E0B;
    --success: #10B981;
    --info: #3B82F6;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition: all 0.2s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gray-50);
    color: var(--gray-900);
    line-height: 1.5;
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.hidden {
    display: none !important;
}

.app {
    display: flex;
    width: 100%;
    height: 100%;
}

.login-screen {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 20% 20%, rgba(76, 175, 80, 0.08), transparent 25%), radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.08), transparent 25%), var(--gray-100);
    z-index: 2000;
    padding: 1.5rem;
}

.login-card {
    width: min(420px, 100%);
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.login-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.login-subtitle {
    color: var(--gray-600);
}

.login-form .form-group {
    margin-bottom: 1rem;
}

.btn-full {
    width: 100%;
}

.login-error {
    margin-top: 0.75rem;
    color: var(--danger);
    min-height: 1.2rem;
    font-size: 0.875rem;
}

.login-footer {
    margin-top: 1rem;
    color: var(--gray-500);
    text-align: center;
}

/* ========================================
   SIDEBAR
   ======================================== */
.sidebar {
    width: 256px;
    background: var(--gray-800);
    color: white;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.sidebar-header {
    padding: 1rem;
    margin-bottom: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--brand-green);
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.sidebar-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--gray-300);
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-item:hover {
    background: var(--gray-700);
    color: white;
}

.nav-item.active {
    background: var(--brand-green);
    color: white;
}

.nav-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-export-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--brand-green);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: auto;
    transition: var(--transition);
}

.btn-export-sidebar:hover {
    background: var(--brand-green-dark);
}

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

.sidebar-overlay.active {
    display: block;
}

/* ========================================
   MAIN WRAPPER
   ======================================== */
.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    height: 64px;
    background: white;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    gap: 1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 10;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--gray-500);
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
}

.search-container {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--gray-400);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-context {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
}

.user-name {
    font-weight: 600;
    color: var(--gray-800);
}

.user-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    font-size: 0.85rem;
}

.role-badge {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: capitalize;
}

.role-badge.admin {
    background: rgba(16, 185, 129, 0.15);
    color: var(--status-fechado);
}

.role-badge.vendedor {
    background: rgba(59, 130, 246, 0.15);
    color: var(--status-lead);
}

.user-phone {
    color: var(--gray-500);
}

.icon-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--gray-400);
    border-radius: 0.5rem;
    transition: var(--transition);
}

.icon-btn:hover {
    color: var(--gray-600);
    background: var(--gray-100);
}

.icon-btn svg {
    width: 24px;
    height: 24px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   CONTENT AREA
   ======================================== */
.content {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.page-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.page-header .page-title {
    margin-bottom: 0;
}

.page-subtitle {
    color: var(--gray-600);
    font-size: 0.95rem;
    max-width: 700px;
}

.form-hint {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.view {
    display: none;
}

.view.active {
    display: block;
}

/* ========================================
   KPI CARDS
   ======================================== */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.kpi-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1rem;
    transition: var(--transition);
}

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

.cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.table-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem 0 1rem;
}

.muted-text {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.agenda-list {
    padding: 0 1rem 1rem 1rem;
}

.agenda-item {
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
}

.agenda-item .title {
    font-weight: 600;
}

.agenda-item .meta {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.agenda-item .status.overdue {
    color: var(--danger);
    font-weight: 700;
}

.kpi-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kpi-icon svg {
    width: 24px;
    height: 24px;
}

.kpi-icon.green {
    background: var(--brand-green-light);
    color: var(--brand-green-dark);
}

.kpi-icon.green-dark {
    background: #D1FAE5;
    color: #065F46;
}

.kpi-icon.yellow {
    background: #FEF3C7;
    color: #92400E;
}

.kpi-icon.blue {
    background: #DBEAFE;
    color: #1E40AF;
}

.kpi-content {
    flex: 1;
}

.kpi-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.kpi-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
}

/* ========================================
   KANBAN BOARD
   ======================================== */
.kanban-board {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.kanban-column {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: var(--shadow-sm);
}

.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
}

.column-header.lead {
    background: #DBEAFE;
}

.column-header.negociacao {
    background: #FEF3C7;
}

.column-header.fechado {
    background: #D1FAE5;
}

.column-header h3 {
    font-size: 1rem;
    font-weight: 600;
}

.column-header .count {
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
}

.cards-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 200px;
}

.cards-container.drag-over {
    background: rgba(76, 175, 80, 0.05);
    border: 2px dashed var(--brand-green);
    border-radius: 0.5rem;
}

.kanban-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 1rem;
    cursor: move;
    transition: var(--transition);
}

.kanban-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

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

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.5rem;
}

.card-title {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.95rem;
}

.card-actions {
    display: flex;
    gap: 0.25rem;
}

.card-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1.125rem;
    opacity: 0.6;
    transition: var(--transition);
}

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

.card-info {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.card-tag {
    display: inline-block;
    background: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
    margin-right: 0.5rem;
    border: 1px solid var(--gray-200);
}

.card-tag.neutral {
    background: var(--gray-100);
    color: var(--gray-700);
}

/* ========================================
   FILTERS & TABLE
   ======================================== */
.filter-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-input,
.filter-select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    background: white;
    transition: var(--transition);
}

select[readonly],
input[readonly] {
    background: var(--gray-100);
    cursor: not-allowed;
}

.filter-input {
    flex: 1;
    min-width: 250px;
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.table-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.leads-table {
    width: 100%;
    border-collapse: collapse;
}

.leads-table thead {
    background: var(--gray-50);
}

.leads-table th {
    padding: 1rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--gray-200);
}

.leads-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-900);
}

.leads-table tbody tr:hover {
    background: var(--gray-50);
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge.lead {
    background: #DBEAFE;
    color: #1E40AF;
}

.status-badge.novo-lead {
    background: #DBEAFE;
    color: #1E40AF;
}

.status-badge.visitar {
    background: #E0F2FE;
    color: #075985;
}

.status-badge.negociacao {
    background: #FEF3C7;
    color: #92400E;
}

.status-badge.apresentacao {
    background: #F3E8FF;
    color: #6B21A8;
}

.status-badge.follow-up {
    background: #E0F2F1;
    color: #0F766E;
}

.status-badge.fechado {
    background: #D1FAE5;
    color: #065F46;
}

.status-badge.venda-realizada {
    background: #DCFCE7;
    color: #166534;
}

.action-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: var(--brand-green);
    color: white;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--brand-green-dark);
}

/* ========================================
   FORM
   ======================================== */
.form-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: var(--brand-green);
}

.form-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--brand-green);
    color: white;
}

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

.btn-secondary {
    background: white;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
    background: var(--gray-50);
}

/* ========================================
   MODAL
   ======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-400);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--gray-700);
}

.modal-body {
    margin-top: 1.5rem;
}

.tab-nav {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tab-btn {
    padding: 0.5rem 0.9rem;
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--brand-green);
    color: white;
    border-color: var(--brand-green);
    box-shadow: var(--shadow-sm);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.detail-section {
    margin-bottom: 1.5rem;
}

.detail-section h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--brand-green);
    font-weight: 600;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.detail-item {
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
    border: 1px solid var(--gray-200);
}

.detail-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.detail-value {
    font-weight: 500;
    color: var(--gray-900);
}

.interaction-item {
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    border-left: 3px solid var(--brand-green);
}

.interaction-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.interaction-date {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.interaction-text {
    color: var(--gray-900);
}

.add-interaction-form {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
}

.add-interaction-form h4 {
    margin-bottom: 0.75rem;
    color: var(--gray-700);
}

.add-interaction-form textarea,
.add-interaction-form select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    font-family: inherit;
}

/* ========================================
   TOAST NOTIFICATIONS
   ======================================== */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 300px;
    animation: slideIn 0.3s ease-out;
}

.toast.success {
    border-left: 4px solid var(--success);
}

.toast.error {
    border-left: 4px solid var(--danger);
}

.toast.warning {
    border-left: 4px solid var(--warning);
}

.toast.info {
    border-left: 4px solid var(--info);
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .sidebar {
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        z-index: 50;
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .menu-toggle {
        display: block;
    }

    .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .content {
        padding: 1rem;
    }

    .kpi-grid {
        grid-template-columns: 1fr;
    }

    .kanban-board {
        grid-template-columns: 1fr;
    }

    .filter-bar {
        flex-direction: column;
    }

    .filter-input {
        width: 100%;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .search-container {
        max-width: none;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .toast-container {
        left: 1rem;
        right: 1rem;
    }

    .toast {
        min-width: auto;
    }

    .leads-table {
        font-size: 0.813rem;
    }

    .leads-table th,
    .leads-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 640px) {
    .page-title {
        font-size: 1.5rem;
    }

    .kpi-value {
        font-size: 1.5rem;
    }
}

/* ========================================
   SCROLLBAR STYLING
   ======================================== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}
