/**
 * Gestion Invités — Feuille de style principale
 * Design moderne inspiré Linear/Stripe — 100% vanilla CSS
 * INTERDIT : violet/purple
 */

/* ========================================
   VARIABLES & RESET
======================================== */

:root {
    --primary: #1E40AF;
    --primary-light: #3B82F6;
    --primary-dark: #1E3A5F;
    --success: #059669;
    --success-light: #D1FAE5;
    --danger: #DC2626;
    --danger-light: #FEE2E2;
    --warning: #F59E0B;
    --warning-light: #FEF3C7;
    --info: #0891B2;
    --info-light: #CFFAFE;
    --bg-main: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-sidebar: #0F172A;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --border: #E2E8F0;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: 200ms ease;
    --sidebar-width: 220px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

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

/* ========================================
   SIDEBAR
======================================== */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--bg-sidebar);
    display: flex;
    flex-direction: column;
    z-index: 100;
    transition: transform 300ms ease;
}

.sidebar-header {
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-logo {
    font-size: 1.5rem;
}

.sidebar-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
}

.sidebar-nav {
    flex: 1;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: #94A3B8;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition);
    text-decoration: none;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #E2E8F0;
}

.nav-item.active {
    background: rgba(59, 130, 246, 0.15);
    color: #3B82F6;
}

.nav-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.sidebar-footer {
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Language switcher */
.lang-switcher {
    display: flex;
    gap: 6px;
    padding: 8px 12px;
    margin-bottom: 4px;
}

.lang-btn {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #94A3B8 !important;
    text-decoration: none;
    transition: all 200ms;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #E2E8F0 !important;
}

.lang-btn.active {
    background: rgba(59, 130, 246, 0.2);
    color: #3B82F6 !important;
}

.lang-switcher-standalone {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.lang-switcher-standalone .lang-btn {
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748B !important;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
}

.lang-switcher-standalone .lang-btn.active {
    background: var(--primary);
    color: #fff !important;
    border-color: var(--primary);
}

.logout-btn {
    color: #EF4444 !important;
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.1) !important;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
}

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

/* ========================================
   MAIN CONTENT
======================================== */

.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}

.top-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all var(--transition);
}

.breadcrumb {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-sep {
    color: var(--border);
}

.breadcrumb-current {
    color: var(--text-primary);
    font-weight: 500;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-name {
    font-size: 0.875rem;
    font-weight: 500;
}

.user-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 8px;
    background: #EFF6FF;
    color: var(--primary);
    border-radius: 20px;
    font-weight: 600;
}

.content-wrapper {
    padding: 32px;
    max-width: 1200px;
}

/* ========================================
   CARDS
======================================== */

.card {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.card-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ========================================
   DASHBOARD
======================================== */

.event-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 24px;
}

.event-banner h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.event-banner p {
    font-size: 0.9rem;
    opacity: 0.85;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    transition: color 300ms;
}

.stat-value.stat-updated {
    color: var(--primary-light);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Donut Chart */
.donut-chart {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.donut-svg {
    width: 160px;
    height: 160px;
    flex-shrink: 0;
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Recent list */
.recent-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.recent-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: #F8FAFC;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.recent-item:hover {
    background: #F1F5F9;
}

.recent-info {
    display: flex;
    flex-direction: column;
}

.recent-name {
    font-size: 0.9rem;
    font-weight: 500;
}

.recent-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ========================================
   BADGES
======================================== */

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
    white-space: nowrap;
}

.badge-success { background: var(--success-light); color: var(--success); }
.badge-danger { background: var(--danger-light); color: var(--danger); }
.badge-warning { background: var(--warning-light); color: #D97706; }
.badge-info { background: var(--info-light); color: var(--info); }

/* ========================================
   ALERTS
======================================== */

.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.alert-error {
    background: var(--danger-light);
    color: var(--danger);
    border: 1px solid #FECACA;
}

.alert-success {
    background: var(--success-light);
    color: var(--success);
    border: 1px solid #BBF7D0;
}

.alert-warning {
    background: var(--warning-light);
    color: #92400E;
    border: 1px solid #FDE68A;
}

/* ========================================
   TOASTS
======================================== */

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transform: translateX(120%);
    transition: transform 300ms ease;
}

.toast.show {
    transform: translateX(0);
}

.toast-success {
    background: var(--success);
    color: #fff;
}

.toast-error {
    background: var(--danger);
    color: #fff;
}

.toast-warning {
    background: var(--warning);
    color: #fff;
}

/* ========================================
   BOUTONS
======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-light);
    color: #fff;
}

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

.btn-outline:hover {
    background: #F1F5F9;
    border-color: #CBD5E1;
}

.btn-danger {
    background: var(--danger);
    color: #fff;
}

.btn-danger:hover {
    background: #B91C1C;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 6px;
    border-radius: 6px;
    transition: background var(--transition);
    color: var(--text-secondary);
    text-decoration: none;
    display: inline-flex;
}

.btn-icon:hover {
    background: #F1F5F9;
    color: var(--text-primary);
}

.btn-icon-danger:hover {
    background: var(--danger-light);
    color: var(--danger);
}

/* ========================================
   FORMULAIRES
======================================== */

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.required {
    color: var(--danger);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="datetime-local"],
input[type="file"],
select,
textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text-primary);
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

input.input-error {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.field-error {
    color: var(--danger);
    font-size: 0.8rem;
    margin-top: 4px;
}

textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.form-page {
    max-width: 700px;
}

.form-card {
    padding: 32px;
}

/* ========================================
   TABLEAU
======================================== */

.table-container {
    overflow-x: auto;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.data-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
}

.data-table th {
    background: #F8FAFC;
    padding: 12px 14px;
    text-align: left;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-secondary);
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}

.data-table th a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.data-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #F1F5F9;
    vertical-align: middle;
}

.data-table tbody tr {
    transition: background var(--transition);
}

.data-table tbody tr:nth-child(even) {
    background: #FAFBFC;
}

.data-table tbody tr:hover {
    background: #F1F5F9;
}

.col-check {
    width: 40px;
}

.sort-icon {
    color: #CBD5E1;
    font-size: 0.8rem;
}

.sort-icon.active {
    color: var(--primary);
}

.font-medium {
    font-weight: 500;
}

.text-small {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

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

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

.actions-cell {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Inline status select */
.inline-status {
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 20px;
    -webkit-appearance: none;
    appearance: none;
}

.inline-select {
    padding: 4px 8px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.8rem;
    font-family: inherit;
}

/* Check-in toggle */
.checkin-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    color: var(--text-secondary);
}

.checkin-toggle.checked {
    background: var(--success);
    border-color: var(--success);
    color: #fff;
}

.checkin-toggle:hover {
    border-color: var(--success);
}

/* ========================================
   TOOLBAR & FILTRES
======================================== */

.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.toolbar-left {
    flex: 1;
    min-width: 200px;
}

.toolbar-right {
    display: flex;
    gap: 8px;
}

.search-input {
    max-width: 320px;
}

.status-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.825rem;
    font-weight: 500;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition);
}

.filter-btn:hover {
    border-color: #CBD5E1;
    color: var(--text-primary);
}

.filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.filter-success.active { background: var(--success); border-color: var(--success); }
.filter-danger.active { background: var(--danger); border-color: var(--danger); }
.filter-warning.active { background: var(--warning); border-color: var(--warning); }
.filter-info.active { background: var(--info); border-color: var(--info); }

.bulk-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: #EFF6FF;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-dark);
}

/* ========================================
   PAGINATION
======================================== */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 20px;
}

.page-btn {
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition);
}

.page-btn:hover {
    background: #F1F5F9;
    color: var(--text-primary);
}

.page-btn.active {
    background: var(--primary);
    color: #fff;
}

/* ========================================
   MODALES
======================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    animation: fadeIn 200ms ease;
}

.modal {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    animation: slideUp 300ms ease;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    font-size: 1.05rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color var(--transition);
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

/* ========================================
   EXPORT
======================================== */

.export-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.export-card {
    background: #F8FAFC;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

.export-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.export-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.export-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.summary-stats {
    text-align: left;
    font-size: 0.9rem;
    line-height: 2;
    margin-top: 12px;
}

/* ========================================
   LOGIN
======================================== */

.login-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.login-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 40px;
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.login-header h1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.login-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.login-form .form-group {
    margin-bottom: 16px;
}

.login-form .btn {
    margin-top: 8px;
}

/* ========================================
   ANIMATIONS
======================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
    animation: fadeInUp 400ms ease forwards;
    opacity: 0;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

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

    .main-content {
        margin-left: 0;
    }

    .hamburger {
        display: flex;
    }

    .top-header {
        padding: 12px 16px;
    }

    .content-wrapper {
        padding: 16px;
    }

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

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

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

    .toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .toolbar-left {
        min-width: 100%;
    }

    .search-input {
        max-width: 100%;
    }

    .toolbar-right {
        justify-content: stretch;
    }

    .toolbar-right .btn {
        flex: 1;
    }

    .data-table {
        font-size: 0.8rem;
    }

    .data-table th,
    .data-table td {
        padding: 8px 10px;
    }

    .status-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

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

    .donut-chart {
        flex-direction: column;
        align-items: center;
    }

    .user-name {
        display: none;
    }

    .breadcrumb span:first-child {
        display: none;
    }

    .breadcrumb-sep {
        display: none;
    }
}

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

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }
}

/* ========================================
   IMPRESSION
======================================== */

@media print {
    .sidebar,
    .top-header,
    .toolbar,
    .status-filters,
    .bulk-actions,
    .pagination,
    .actions-cell,
    .col-check,
    .hamburger,
    .toast {
        display: none !important;
    }

    .main-content {
        margin-left: 0;
    }

    .content-wrapper {
        padding: 0;
    }

    .table-container {
        box-shadow: none;
    }

    .data-table th,
    .data-table td {
        padding: 6px 8px;
    }
}

/* ========================================
   CHECKBOX STYLING
======================================== */

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

/* ========================================
   SCROLLBAR
======================================== */

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}
