/* Reset y variables - Diseño inspirado en Profitness Mérida */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores principales - Azul profesional */
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary-color: #2563eb;
    --accent-color: #60a5fa;
    
    /* Colores de estado */
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    
    /* Colores de texto */
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --text-white: #ffffff;
    
    /* Fondos */
    --bg-primary: #ffffff;
    --bg-secondary: #e5e7eb;
    --bg-tertiary: #d1d5db;
    --bg-card: #ffffff;
    
    /* Bordes */
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    
    /* Sombras suaves y profesionales */
    --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);
    
    --sidebar-width: 240px;
    --topbar-height: 56px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-secondary);
    min-height: 100vh;
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 15px;
}

/* Layout */
.layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar - Diseño moderno y limpio */
.sidebar {
    width: var(--sidebar-width);
    background: #000000;
    border-right: 1px solid var(--border-color);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.sidebar-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-light);
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sidebar-header img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.sidebar-toggle {
    position: absolute;
    right: 1.25rem;
}

.sidebar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.2s;
}

.sidebar-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-toggle span {
    width: 24px;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s;
}

.sidebar-nav {
    padding: 0.5rem 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.875rem;
    border-left: 3px solid transparent;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-left-color: #64b5f6;
}

.nav-item.active {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-left-color: #64b5f6;
    font-weight: 600;
}

.nav-item-danger {
    color: #ff6b6b;
}

.nav-item-danger:hover {
    background: rgba(255, 107, 107, 0.15);
    border-left-color: #ff6b6b;
    color: #ff6b6b;
}

.nav-icon {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 2;
    stroke: currentColor;
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    margin-right: 0.25em;
    vertical-align: middle;
}

.icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 2;
}

.nav-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0.5rem 1.25rem;
    background: var(--border-light);
    margin: 0.75rem 1.5rem;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    backdrop-filter: blur(2px);
}

/* Main content */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.topbar {
    height: var(--topbar-height);
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.page-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

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

.topbar-link {
    color: var(--primary-color);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    transition: background 0.15s ease;
}
.topbar-link:hover {
    background: var(--bg-secondary);
    color: var(--primary-dark);
}

.topbar-user {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border-radius: 6px;
}

/* Member search (buscador con lupa en modales) */
.member-search {
    position: relative;
}

.member-search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.member-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-search-input {
    width: 100%;
    padding-left: 40px !important;
    padding-right: 0.75rem;
}

.member-search-results {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 220px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    display: none;
}

.member-search-results.active {
    display: block;
}

.member-search-results li {
    padding: 0.6rem 0.75rem 0.6rem 40px;
    cursor: pointer;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9375rem;
    transition: background 0.1s ease;
}

.member-search-results li:hover,
.member-search-results li.selected {
    background: var(--bg-secondary);
}

.member-search-results li:last-child {
    border-bottom: none;
}

.member-search-results li small {
    display: block;
    color: var(--text-light);
    font-size: 0.8125rem;
    margin-top: 0.15rem;
}

.content-wrapper {
    flex: 1;
    padding: 1.5rem;
    background: var(--bg-secondary);
}

/* Cards - Diseño moderno con sombras suaves */
.card {
    background: var(--bg-card);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    padding: 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-light);
    transition: box-shadow 0.3s ease;
}

/* Grid de sesiones */
.sessions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

/* Plan semanal - Columnas por día */
.weekly-schedule {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.day-column {
    display: flex;
    flex-direction: column;
    min-height: 400px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-secondary);
}

.day-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    padding: 0.75rem;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    border-radius: 8px 8px 0 0;
    transition: all 0.2s ease;
}

.day-header:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.day-header h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.day-header-today {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    border: 2px solid #ff6b35;
}

.today-badge {
    background: rgba(255, 255, 255, 0.3);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 0.5rem;
}

.day-date {
    font-size: 0.8rem;
    opacity: 0.9;
    color: var(--text-white);
}

.day-sessions {
    flex: 1;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
}

.no-sessions {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 1rem;
    font-style: italic;
}

/* Vista por día - Horas a la izquierda */
.day-view-container {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-secondary);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.day-view-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-light);
}

.day-view-header h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Vista día: una fila por hora de inicio, solo tarjetas de sesión (sin columna de horas) */
.day-view-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 100px;
    padding: 0.5rem;
}

.day-view-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
    row-gap: 0.75rem;
    align-items: flex-start;
}

.day-view-col {
    background: var(--bg-secondary);
    border-radius: 6px;
    padding: 0.75rem;
    box-shadow: var(--shadow-sm);
}

.day-view-col-header {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-light);
    margin-bottom: 0.35rem;
}

.day-view-col-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.day-view-col .session-card {
    max-width: 100%;
}

.session-card {
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.session-card-male {
    background: #fff9c4; /* Amarillo claro */
    border-color: #fdd835; /* Amarillo */
}

.session-card-female {
    background: #e3f2fd; /* Azul claro */
    border-color: #64b5f6; /* Azul */
}

.session-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary-light);
}

.session-card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.sessions-column .session-card-header {
    padding: 0.5rem;
}

.session-type {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-white);
    flex: 1;
}

.session-card .session-type {
    font-size: 0.9rem;
}

.session-trainer {
    font-size: 0.75rem;
    opacity: 0.9;
    color: var(--text-white);
}

.session-card-body {
    padding: 0.75rem;
    flex-grow: 1;
}

.sessions-column .session-card-body {
    padding: 0.5rem;
}

.session-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.session-info > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
}

.session-info strong {
    color: var(--text-secondary);
    font-weight: 500;
}

.session-date,
.session-time,
.session-capacity {
    color: var(--text-primary);
}

.session-card-footer {
    padding: 0.5rem 0.75rem;
    border-top: 1px solid var(--border-light);
    background: var(--bg-secondary);
    display: flex;
    justify-content: flex-end;
}

.session-card-footer .btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
}

/* Estilos específicos para tarjetas dentro de columnas semanales */
.day-sessions .session-card {
    margin-bottom: 0;
}

.day-sessions .session-card-header {
    padding: 0.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.day-sessions .session-card-body {
    padding: 0.6rem;
}

.day-sessions .session-info {
    gap: 0.4rem;
}

.day-sessions .session-info > div {
    font-size: 0.8rem;
}

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

.card-header {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: #64b5f6;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px 8px 0 0;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.2px;
}

/* Buttons - Estilo moderno y profesional */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--text-primary);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: #374151;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.btn-success:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.btn-danger:hover {
    background: #dc2626;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
}

/* Forms - Diseño limpio y moderno */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.375rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.form-control {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    background: var(--bg-primary);
    color: var(--text-primary);
}

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

.form-control:disabled {
    background: var(--bg-tertiary);
    cursor: not-allowed;
    opacity: 0.6;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.form-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

/* Tables - Diseño profesional */
.table-container {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
}

.table thead {
    background: #64b5f6;
    color: #ffffff;
}

.table th {
    padding: 0.625rem 0.875rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: none;
    color: #ffffff;
}

.table td {
    padding: 0.625rem 0.875rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
    font-size: 0.875rem;
}

.table tbody tr {
    transition: background 0.2s ease;
}

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

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

/* Badges - Estilo moderno */
.badge {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
}

.badge-success {
    background: #d1fae5;
    color: #065f46;
}

.badge-danger {
    background: #fee2e2;
    color: #991b1b;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-info {
    background: #dbeafe;
    color: #1e40af;
}

.badge-secondary {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
}

/* Flash messages - Diseño mejorado */
.flash-messages {
    margin-bottom: 1rem;
}

.flash-message {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    border-left: 3px solid;
    box-shadow: var(--shadow-sm);
    font-size: 0.875rem;
}

.flash-success {
    background: #d1fae5;
    color: #065f46;
    border-left-color: var(--success-color);
}

.flash-error {
    background: #fee2e2;
    color: #991b1b;
    border-left-color: var(--danger-color);
}

.flash-info {
    background: #dbeafe;
    color: #1e40af;
    border-left-color: var(--info-color);
}

.flash-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.6;
    padding: 0;
    margin-left: 1rem;
    line-height: 1;
    color: inherit;
}

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

/* Utilities */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.flex {
    display: flex;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gap-2 {
    gap: 1rem;
}

/* Modal - Diseño moderno */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xl);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}

.modal-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.2px;
}

.modal-footer {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
}

/* Login page - Diseño profesional */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    padding: 2rem;
}

.login-card {
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    border: 1px solid var(--border-light);
}

.login-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .sidebar-overlay.active {
        display: block;
    }
    
    .sidebar-toggle {
        display: flex;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .content-wrapper {
        padding: 1rem;
    }
    
    .topbar {
        padding: 0 1rem;
    }
    
    .card {
        padding: 1rem;
    }
    
    .page-title {
        font-size: 1.25rem;
    }
}

/* Scrollbar personalizado */
.sidebar::-webkit-scrollbar,
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.sidebar::-webkit-scrollbar-track,
.modal-content::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.sidebar::-webkit-scrollbar-thumb,
.modal-content::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.sidebar::-webkit-scrollbar-thumb:hover,
.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}
