﻿
        :root {
            --primary: #0078B7;
            --primary-dark: #005a87;
            --secondary: #10b981;
            --success: #10b981;
            --light: #f8f9fa;
            --dark: #212529;
            --danger: #ef4444;
            --warning: #f59e0b;
            --info: #3b82f6;
            --font-family: 'Cairo', sans-serif;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        * {
            box-sizing: border-box;
            font-family: var(--font-family);
            transition: var(--transition);
        }
        body {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            color: #333;
            min-height: 100vh;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            touch-action: manipulation;
        }
        .auth-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: fadeIn 0.8s ease-out;
        }
        .auth-card {
            background: white;
            border-radius: 20px;
            box-shadow: var(--shadow);
            padding: 2rem;
            width: 100%;
            max-width: 450px;
            border: 1px solid rgba(0, 120, 183, 0.1);
        }
        .logo {
            text-align: center;
            margin-bottom: 1.5rem;
        }
        .logo img {
            width: 120px;
            height: auto;
            margin-bottom: 1rem;
            transition: var(--transition);
        }
        .password-container {
            position: relative;
        }
        .password-input-container {
            position: relative;
        }
        .password-toggle {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #666;
            font-size: 1rem;
            user-select: none;
            padding: 0 5px;
            z-index: 2;
        }
        .password-toggle:hover {
            color: var(--primary);
        }
        .form-control {
            padding-left: 35px !important;
            border-radius: 10px;
            padding: 0.75rem 1rem;
            border: 2px solid #e9ecef;
            transition: var(--transition);
        }
        .dashboard {
            min-height: 100vh;
            background: #f8f9fa;
            display: flex;
        }
        .sidebar {
            background: linear-gradient(180deg, var(--primary), var(--primary-dark));
            color: white;
            min-height: 100vh;
            padding: 0;
            box-shadow: 3px 0 10px rgba(0, 0, 0, 0.1);
            width: 280px;
            z-index: 1000;
            position: fixed;
            top: 0;
            right: 0;
            transition: transform 0.3s ease;
        }
        @media (max-width: 768px) {
            .sidebar {
                transform: translateX(100%);
            }
            .sidebar.active {
                transform: translateX(0);
            }
        }
        .sidebar-header {
            padding: 1.5rem;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(0, 0, 0, 0.1);
            position: relative;
        }
        .close-sidebar {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: white;
            font-size: 1.2rem;
            display: none;
        }
        @media (max-width: 768px) {
            .close-sidebar {
                display: block;
            }
        }
        .sidebar-menu {
            list-style: none;
            padding: 1rem 0;
            margin: 0;
        }
        .sidebar-menu li {
            padding: 0;
            margin: 0.2rem 0;
        }
        .sidebar-menu a {
            display: flex;
            align-items: center;
            padding: 1rem 1.5rem;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            margin: 0.2rem;
            transition: var(--transition);
            border-left: 4px solid transparent;
        }
        .sidebar-menu a:hover, .sidebar-menu a.active {
            background: rgba(255, 255, 255, 0.15);
            border-left: 4px solid white;
        }
        .sidebar-menu i {
            margin-right: 10px;
            font-size: 1.1rem;
            min-width: 24px;
            text-align: center;
        }
        .main-content {
            padding: 1rem;
            background: #f8f9fa;
            width: 100%;
            flex: 1;
            margin-right: 280px;
            transition: margin-right 0.3s ease;
        }
        @media (max-width: 768px) {
            .main-content {
                margin-right: 0;
            }
        }
        .header {
            background: white;
            padding: 1.2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            margin-bottom: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            padding: 8px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .mobile-menu-btn:active {
            background-color: rgba(0, 120, 183, 0.1);
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
        }
        .employee-card {
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow);
            padding: 1.5rem;
            margin-bottom: 1.2rem;
            transition: var(--transition);
            border-top: 5px solid var(--primary);
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        .employee-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), transparent);
        }
        .employee-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        .employee-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
            margin: 0 auto 1rem;
        }
        .employee-name {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            text-align: center;
        }
        .employee-position {
            color: #666;
            text-align: center;
            margin-bottom: 1rem;
        }
        .employee-salary {
            font-size: 1.2rem;
            font-weight: bold;
            margin: 0.8rem 0;
            color: var(--primary);
            text-align: center;
        }
        .attendance-status {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .status-present {
            background-color: rgba(16, 185, 129, 0.15);
            color: #10b981;
        }
        .status-absent {
            background-color: rgba(239, 68, 68, 0.15);
            color: #ef4444;
        }
        .status-late {
            background-color: rgba(245, 158, 11, 0.15);
            color: #f59e0b;
        }
        .stats-card {
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }
        .stats-card:hover {
            box-shadow: var(--shadow-hover);
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 10px;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 120, 183, 0.4);
        }
        .btn-primary:active {
            transform: translateY(0);
        }
        .btn-danger {
            background: var(--danger);
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 10px;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-danger:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
        }
        .table th {
            border-top: none;
            font-weight: 700;
            background: rgba(0, 120, 183, 0.05);
        }
        .user-info {
            display: flex;
            align-items: center;
            background: rgba(0, 120, 183, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            transition: var(--transition);
        }
        .user-info:hover {
            background: rgba(0, 120, 183, 0.2);
        }
        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 10px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .loading {
            text-align: center;
            padding: 2rem;
            color: #666;
        }
        .alert {
            border-radius: 12px;
            border: none;
            padding: 1rem 1.5rem;
        }
        .password-requirements {
            font-size: 0.85rem;
            color: #666;
            margin-top: 0.5rem;
        }
        .requirement {
            display: flex;
            align-items: center;
            margin: 0.3rem 0;
        }
        .requirement i {
            margin-left: 0.5rem;
            font-size: 0.8rem;
        }
        .valid {
            color: #10b981;
        }
        .invalid {
            color: #ef4444;
        }
        .tab-content {
            animation: fadeIn 0.5s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .report-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        .report-card {
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }
        .report-card:hover {
            box-shadow: var(--shadow-hover);
        }
        .export-btn {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .report-header {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 1.5rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
        }
        .report-summary {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .summary-card {
            flex: 1;
            min-width: 200px;
            background: white;
            border-radius: 10px;
            padding: 1.2rem;
            box-shadow: var(--shadow);
            text-align: center;
        }
        .summary-card h5 {
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            color: #666;
        }
        .summary-card .value {
            font-size: 1.5rem;
            font-weight: bold;
        }
        .summary-card.present .value {
            color: #10b981;
        }
        .summary-card.absent .value {
            color: #ef4444;
        }
        .summary-card.late .value {
            color: #f59e0b;
        }
        .summary-card.count .value {
            color: var(--primary);
        }
        .report-details {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        .report-table {
            width: 100%;
            border-collapse: collapse;
        }
        .report-table th, .report-table td {
            padding: 0.8rem;
            border-bottom: 1px solid #eee;
            text-align: right;
        }
        .report-table th {
            background-color: #f8f9fa;
            font-weight: 600;
        }
        .report-table tr:hover {
            background-color: #f8f9fa;
        }
        .empty-report {
            text-align: center;
            padding: 2rem;
            color: #666;
        }
        .report-period {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            color: #666;
        }
        .dashboard-top-section {
            margin-bottom: 2rem;
        }
        .dashboard-bottom-section {
            margin-top: 2rem;
        }
        .whatsapp-export-btn {
            background-color: #25D366;
            border-color: #25D366;
        }
        .whatsapp-export-btn:hover {
            background-color: #128C7E;
            border-color: #128C7E;
        }
        .attendance-actions {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        .deduction-badge {
            display: inline-block;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-size: 0.75rem;
            margin-left: 5px;
        }
        .deduction-daily {
            background-color: rgba(245, 158, 11, 0.15);
            color: #f59e0b;
        }
        .deduction-monthly {
            background-color: rgba(239, 68, 68, 0.15);
            color: #ef4444;
        }
        .notes-section {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        .notes-text {
            font-size: 0.85rem;
            color: #666;
            margin-top: 5px;
        }
        .employee-details {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }
        .employee-detail-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }
        .employee-detail-label {
            color: #666;
        }
        .employee-detail-value {
            font-weight: 500;
        }
        .search-container {
            position: relative;
            margin-bottom: 1rem;
        }
        .search-input {
            padding-right: 40px;
        }
        .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
        }
        .attendance-full-section {
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .employee-search-results {
            max-height: 300px;
            overflow-y: auto;
            border: 1px solid #e9ecef;
            border-radius: 10px;
            margin-top: 10px;
            display: none;
        }
        .employee-search-item {
            padding: 10px 15px;
            border-bottom: 1px solid #e9ecef;
            cursor: pointer;
            transition: var(--transition);
        }
        .employee-search-item:hover {
            background-color: #f8f9fa;
        }
        .employee-search-item:last-child {
            border-bottom: none;
        }
        .selected-employee-details {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 1rem;
            margin-top: 1rem;
            display: none;
        }
        .selected-employee-info {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .selected-employee-field {
            flex: 1;
            min-width: 200px;
        }
        .selected-employee-field label {
            font-weight: bold;
            color: #666;
            margin-bottom: 5px;
            display: block;
        }
        .selected-employee-field .value {
            font-size: 1rem;
            color: #333;
        }
        .word-export-btn {
            background-color: #2b579a;
            border-color: #2b579a;
        }
        .word-export-btn:hover {
            background-color: #1e3f6d;
            border-color: #1e3f6d;
        }
        .employees-search-container {
            margin-bottom: 20px;
        }
        .employees-search-input {
            padding-right: 40px;
        }
        
        /* تحسينات تنسيق الأزرار */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            white-space: nowrap;
            text-align: center;
        }
        
        .btn-sm {
            min-height: 36px;
            padding: 0.375rem 0.75rem;
        }
        
        .table .btn {
            margin: 2px;
        }
        
        .action-buttons {
            display: flex;
            flex-wrap: nowrap;
            gap: 5px;
        }
        
        /* أنماط قسم الإجازات */
        .leave-status {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .status-approved {
            background-color: rgba(16, 185, 129, 0.15);
            color: #10b981;
        }
        
        .status-pending {
            background-color: rgba(245, 158, 11, 0.15);
            color: #f59e0b;
        }
        
        .status-rejected {
            background-color: rgba(239, 68, 68, 0.15);
            color: #ef4444;
        }
        
        .status-cancelled {
            background-color: rgba(107, 114, 128, 0.15);
            color: #6b7280;
        }
        
        .leave-type-badge {
            display: inline-block;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-size: 0.75rem;
            margin-left: 5px;
        }
        
        .leave-type-annual {
            background-color: rgba(59, 130, 246, 0.15);
            color: #3b82f6;
        }
        
        .leave-type-sick {
            background-color: rgba(139, 92, 246, 0.15);
            color: #8b5cf6;
        }
        
        .leave-type-emergency {
            background-color: rgba(239, 68, 68, 0.15);
            color: #ef4444;
        }
        
        .leave-type-maternity {
            background-color: rgba(236, 72, 153, 0.15);
            color: #ec4899;
        }
        
        .leave-type-unpaid {
            background-color: rgba(107, 114, 128, 0.15);
            color: #6b7280;
        }
        
        .leave-balance-card {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            border: 2px solid #bae6fd;
            transition: var(--transition);
        }
        
        .leave-balance-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        
        .leave-balance-value {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary);
            margin: 0.5rem 0;
        }
        
        .leave-balance-label {
            font-size: 0.9rem;
            color: #666;
        }
        
        .leave-calendar {
            background: white;
            border-radius: 10px;
            padding: 1rem;
            border: 1px solid #e9ecef;
        }
        
        .calendar-day {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .calendar-day.leave-day {
            background-color: #fef3c7;
            color: #d97706;
        }
        
        .calendar-day.current-day {
            background-color: var(--primary);
            color: white;
        }
        
        .calendar-day:hover {
            background-color: #f3f4f6;
        }
        
        .leave-request-card {
            background: white;
            border-radius: 10px;
            padding: 1rem;
            margin-bottom: 1rem;
            border-left: 4px solid #e9ecef;
            transition: var(--transition);
        }
        
        .leave-request-card:hover {
            transform: translateX(-5px);
            box-shadow: var(--shadow);
        }
        
        .leave-request-card.approved {
            border-left-color: #10b981;
        }
        
        .leave-request-card.pending {
            border-left-color: #f59e0b;
        }
        
        .leave-request-card.rejected {
            border-left-color: #ef4444;
        }
        
        .leave-timeline {
            position: relative;
            padding-right: 20px;
        }
        
        .leave-timeline::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background-color: #e9ecef;
        }
        
        .timeline-item {
            position: relative;
            padding-bottom: 1.5rem;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            right: -23px;
            top: 0;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #9ca3af;
            border: 2px solid white;
        }
        
        .timeline-item.approved::before {
            background-color: #10b981;
        }
        
        .timeline-item.pending::before {
            background-color: #f59e0b;
        }
        
        .timeline-item.rejected::before {
            background-color: #ef4444;
        }
        
        /* تحسينات للاستجابة على الأجهزة المحمولة */
        @media (max-width: 768px) {
            .action-buttons {
                flex-direction: column;
                gap: 3px;
            }
            
            .table .btn {
                margin: 1px;
                font-size: 0.8rem;
                padding: 0.25rem 0.5rem;
            }
            
            .btn {
                min-height: 40px;
            }
            
            .leave-balance-card {
                padding: 1rem;
            }
            
            .leave-balance-value {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 1200px) {
            .sidebar {
                width: 250px;
            }
            .main-content {
                margin-right: 250px;
            }
        }
        @media (max-width: 992px) {
            .sidebar {
                width: 220px;
            }
            .main-content {
                margin-right: 220px;
            }
        }
        @media (max-width: 768px) {
            .main-content {
                margin-right: 0;
            }
            .header {
                padding: 1rem;
            }
            .auth-card {
                padding: 1.5rem;
            }
            .employee-card {
                padding: 1.2rem;
            }
            .stats-card {
                padding: 1.2rem;
            }
            .employee-salary {
                font-size: 1.1rem;
            }
            .user-info {
                padding: 0.4rem 0.8rem;
            }
            .user-avatar {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            .logo img {
                width: 100px;
            }
            .table-responsive {
                font-size: 0.9rem;
            }
            .btn {
                padding: 0.75rem 1rem;
                min-height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .sidebar-menu a {
                padding: 1rem 1.2rem;
                min-height: 54px;
            }
            .report-summary {
                flex-direction: column;
            }
            .summary-card {
                min-width: 100%;
            }
            .attendance-actions {
                flex-direction: column;
            }
            .selected-employee-field {
                min-width: 100%;
            }
        }
        @media (max-width: 576px) {
            .auth-card {
                padding: 1.2rem;
                border-radius: 15px;
            }
            .header {
                flex-direction: column;
                align-items: flex-start;
            }
            .user-info {
                align-self: flex-end;
            }
            .employee-card {
                padding: 1rem;
            }
            .stats-card {
                padding: 1rem;
            }
            .employee-salary {
                font-size: 1rem;
            }
            .employee-avatar {
                width: 60px;
                height: 60px;
                font-size: 1.2rem;
            }
            .btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
            .form-control {
                padding: 0.6rem 0.8rem;
            }
            .mobile-menu-btn {
                padding: 6px;
                font-size: 1.3rem;
            }
        }
        @media (max-width: 400px) {
            .auth-container {
                padding: 10px;
            }
            .auth-card {
                padding: 1rem;
            }
            .logo img {
                width: 80px;
            }
            .employee-card {
                padding: 0.8rem;
            }
            .stats-card {
                padding: 0.8rem;
            }
            .employee-salary {
                font-size: 0.9rem;
            }
            .employee-avatar {
                width: 50px;
                height: 50px;
                font-size: 1rem;
            }
            .btn {
                padding: 0.5rem 1rem;
                font-size: 0.85rem;
            }
        }
        @media (max-height: 500px) and (orientation: landscape) {
            .auth-container {
                padding: 10px;
                align-items: flex-start;
            }
            .auth-card {
                padding: 1rem;
                margin-top: 10px;
                margin-bottom: 10px;
            }
            .logo {
                margin-bottom: 1rem;
            }
            .logo img {
                width: 70px;
            }
        }
        @media (prefers-color-scheme: dark) {
            .dashboard {
                background: #121212;
                color: #e0e0e0;
            }
            .header, .employee-card, .stats-card {
                background: #1e1e1e;
                color: #e0e0e0;
            }
            .table {
                color: #e0e0e0;
            }
            .table th {
                background: rgba(0, 120, 183, 0.1);
            }
            .form-control {
                background: #2d2d2d;
                border-color: #444;
                color: #e0e0e0;
            }
            .form-control:focus {
                background: #2d2d2d;
                color: #e0e0e0;
            }
        }
        .btn, .sidebar-menu a, .mobile-menu-btn, .close-sidebar {
            -webkit-tap-highlight-color: transparent;
            cursor: pointer;
        }
        .btn:active, .sidebar-menu a:active, .mobile-menu-btn:active {
            transform: scale(0.98);
        }
        .animate__animated {
            animation-duration: 0.6s;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .pulse-animation {
            animation: pulse 2s infinite;
        }
        .tab-content {
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .tab-content.active {
            opacity: 1;
        }
        .main-content {
            overflow: hidden;
        }
        .confirmation-modal .modal-content {
            border-radius: 15px;
            overflow: hidden;
        }
        .confirmation-modal .modal-header {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
        }
        .confirmation-modal .modal-footer {
            border-top: 1px solid #eee;
            padding: 1rem;
        }
        .deduction-section {
            background-color: #f8f9fa;
            padding: 1rem;
            border-radius: 10px;
            margin-top: 1rem;
        }
    


/* Sidebar Scroll for Doctor, Lawyer, Employees */
.sidebar {
    height: 100vh;
    overflow-y: auto;
    padding-bottom: 20px;
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

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

.sidebar::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

