@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --primary: #007AFF;
    --success: #34C759;
    --warning: #FF9500;
    --danger: #FF3B30;
    --text-primary: #1D1D1F;
    --text-secondary: #86868B;
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-hover: rgba(255, 255, 255, 0.6);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
    --sidebar-width: 300px;
    --header-height: 70px;
    --radius: 20px;
    --radius-sm: 14px;
}

body {
    font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #F5F7FA 0%, #C3CFE2 100%);
    min-height: 100vh;
    direction: rtl;
    overflow-x: hidden;
}

.sidebar {
    position: fixed;
    right: 0;
    top: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(80px) saturate(180%);
    -webkit-backdrop-filter: blur(80px) saturate(180%);
    border-left: 0.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.sidebar-header {
    padding: 32px 24px;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo i {
    font-size: 32px;
    color: var(--primary);
}

.close-btn {
    display: none;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    width: 36px;
    height: 36px;
    border-radius: 18px;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-primary);
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 16px 12px;
}

.sidebar-nav::-webkit-scrollbar {
    width: 4px;
}

.sidebar-nav::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav > ul > li {
    margin: 4px 8px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 15px;
    position: relative;
}

.sidebar-nav > ul > li.active > a {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-card);
}

.sidebar-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
}

.sidebar-nav a i {
    font-size: 20px;
    width: 24px;
    opacity: 0.8;
}

.sidebar-nav > ul > li.active > a i {
    opacity: 1;
}

.sidebar-nav a .arrow {
    margin-right: auto;
    font-size: 11px;
    opacity: 0.6;
}

.dropdown {
    position: relative;
}

.dropdown.active .dropdown-toggle .arrow {
    transform: rotate(-180deg);
    opacity: 1;
}

.dropdown-menu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    margin-top: 6px;
    margin-right: 8px;
}

.dropdown.active .dropdown-menu {
    max-height: 500px;
}

.dropdown-menu li {
    margin: 3px 0;
}

.dropdown-menu a {
    padding: 12px 18px 12px 52px;
    font-size: 14px;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 0.5px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.badge {
    background: var(--danger);
    color: white;
    padding: 3px 9px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-right: auto;
    box-shadow: 0 2px 8px rgba(255, 59, 48, 0.3);
}

.sidebar-footer {
    padding: 20px 16px;
    border-top: 0.5px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 14px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.user-profile img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.user-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
    letter-spacing: -0.3px;
}

.user-info p {
    font-size: 13px;
    color: var(--text-secondary);
    opacity: 0.7;
}

.logout-btn {
    background: rgba(255, 59, 48, 0.15);
    backdrop-filter: blur(20px);
    border: 0.5px solid rgba(255, 59, 48, 0.2);
    width: 44px;
    height: 44px;
    border-radius: 22px;
    cursor: pointer;
    color: var(--danger);
    font-size: 18px;
}

.logout-btn:hover {
    background: rgba(255, 59, 48, 0.25);
}

.main-content {
    margin-right: var(--sidebar-width);
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.top-header {
    height: var(--header-height);
    background: var(--glass-bg);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.menu-toggle {
    display: none;
    background: var(--glass-hover);
    backdrop-filter: blur(20px);
    border: 0.5px solid var(--glass-border);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 16px;
    color: var(--text-primary);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.5);
}

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

.search-box i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    opacity: 0.6;
}

.search-box input {
    width: 100%;
    padding: 10px 40px 10px 18px;
    border: 0.5px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-sm);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 13px;
    color: var(--text-primary);
}

.search-box input::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.search-box input:focus {
    outline: none;
    background: var(--glass-hover);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
}

.header-actions {
    display: flex;
    gap: 12px;
    margin-right: auto;
}

.header-btn {
    position: relative;
    background: var(--glass-hover);
    backdrop-filter: blur(20px);
    border: 0.5px solid var(--glass-border);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 16px;
    color: var(--text-primary);
}

.header-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.notification-dot {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 9px;
    height: 9px;
    background: var(--danger);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 4px rgba(255, 59, 48, 0.4);
}

.dashboard-content {
    padding: 24px 24px;
}

.page-title {
    margin-bottom: 20px;
}

.page-title h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.page-title p {
    color: var(--text-secondary);
    font-size: 15px;
    opacity: 0.7;
}

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

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: var(--shadow-card);
}

.stat-card:hover {
    box-shadow: var(--shadow-soft);
    background: var(--glass-hover);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stat-icon.blue {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
}

.stat-icon.green {
    background: linear-gradient(135deg, #34C759 0%, #30D158 100%);
}

.stat-icon.orange {
    background: linear-gradient(135deg, #FF9500 0%, #FF6B35 100%);
}

.stat-icon.purple {
    background: linear-gradient(135deg, #5856D6 0%, #AF52DE 100%);
}

.stat-info {
    flex: 1;
}

.stat-info h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.stat-info p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.stat-change {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 8px;
}

.stat-change.positive {
    background: rgba(52, 199, 89, 0.15);
    color: var(--success);
}

.stat-change.negative {
    background: rgba(255, 59, 48, 0.15);
    color: var(--danger);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 16px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-card);
}

.glass-card:hover {
    box-shadow: var(--shadow-soft);
    background: var(--glass-hover);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.card-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.btn-secondary {
    background: rgba(0, 122, 255, 0.12);
    backdrop-filter: blur(20px);
    color: var(--primary);
    border: 0.5px solid rgba(0, 122, 255, 0.2);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(0, 122, 255, 0.2);
}

.select-dropdown {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 0.5px solid var(--glass-border);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 12px;
    cursor: pointer;
    color: var(--text-primary);
}

.select-dropdown:focus {
    outline: none;
    background: var(--glass-hover);
    border-color: rgba(0, 122, 255, 0.3);
}

.table-container {
    overflow-x: auto;
    border-radius: var(--radius-sm);
}

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

.data-table thead th {
    text-align: right;
    padding: 12px 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 0.5px solid var(--glass-border);
    opacity: 0.7;
}

.data-table tbody td {
    padding: 12px 10px;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.15);
    font-size: 13px;
    color: var(--text-primary);
}

.data-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.status {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.status.success {
    background: rgba(52, 199, 89, 0.2);
    color: var(--success);
    border: 0.5px solid rgba(52, 199, 89, 0.3);
}

.status.pending {
    background: rgba(255, 149, 0, 0.2);
    color: var(--warning);
    border: 0.5px solid rgba(255, 149, 0, 0.3);
}

.status.cancelled {
    background: rgba(255, 59, 48, 0.2);
    color: var(--danger);
    border: 0.5px solid rgba(255, 59, 48, 0.3);
}

.chart-container {
    padding: 24px 0;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    height: 220px;
}

.bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.bar {
    width: 100%;
    background: linear-gradient(to top, #007AFF 0%, #5856D6 100%);
    border-radius: 12px 12px 0 0;
    min-height: 20px;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.2);
}

.bar-item:hover .bar {
    opacity: 0.9;
}

.bar-item span {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    opacity: 0.7;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 0.5px solid var(--glass-border);
    border-radius: var(--radius-sm);
}

.product-item:hover {
    background: rgba(255, 255, 255, 0.4);
}

.product-item img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-info {
    flex: 1;
}

.product-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.product-info p {
    font-size: 12px;
    color: var(--text-secondary);
    opacity: 0.7;
}

.product-price span {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 0.5px solid var(--glass-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.action-btn i {
    font-size: 22px;
    color: var(--primary);
    opacity: 0.9;
}

/* Activities List */
.activities-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 0.5px solid var(--glass-border);
    border-radius: var(--radius-sm);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}

.activity-icon.blue {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
}

.activity-icon.green {
    background: linear-gradient(135deg, #34C759 0%, #30D158 100%);
}

.activity-icon.orange {
    background: linear-gradient(135deg, #FF9500 0%, #FF6B35 100%);
}

.activity-icon.purple {
    background: linear-gradient(135deg, #5856D6 0%, #AF52DE 100%);
}

.activity-info {
    flex: 1;
}

.activity-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.activity-info p {
    font-size: 12px;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Stats Chart */
.stats-chart {
    padding: 20px 0;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    height: 180px;
}

.chart-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.chart-bar {
    width: 100%;
    background: linear-gradient(to top, #34C759 0%, #30D158 100%);
    border-radius: 10px 10px 0 0;
    min-height: 20px;
    box-shadow: 0 2px 8px rgba(52, 199, 89, 0.2);
}

.chart-bar-item span {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    opacity: 0.7;
}

/* Customers List */
.customers-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.customer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 0.5px solid var(--glass-border);
    border-radius: var(--radius-sm);
}

.customer-item img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.customer-info {
    flex: 1;
}

.customer-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.customer-info p {
    font-size: 12px;
    color: var(--text-secondary);
    opacity: 0.7;
}

.customer-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 215, 0, 0.2);
    border: 0.5px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: #FF9500;
}

.customer-badge i {
    font-size: 12px;
}

/* Notifications */
.notification-count {
    background: var(--danger);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 0.5px solid var(--glass-border);
    border-radius: var(--radius-sm);
    opacity: 0.7;
}

.notification-item.unread {
    opacity: 1;
    background: rgba(255, 255, 255, 0.3);
    border-right: 3px solid var(--primary);
}

.notification-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    flex-shrink: 0;
}

.notification-icon.blue {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
}

.notification-icon.green {
    background: linear-gradient(135deg, #34C759 0%, #30D158 100%);
}

.notification-icon.orange {
    background: linear-gradient(135deg, #FF9500 0%, #FF6B35 100%);
}

.notification-icon.purple {
    background: linear-gradient(135deg, #5856D6 0%, #AF52DE 100%);
}

.notification-info {
    flex: 1;
}

.notification-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.notification-info p {
    font-size: 12px;
    color: var(--text-secondary);
    opacity: 0.8;
    margin-bottom: 4px;
}

.notification-time {
    font-size: 11px;
    color: var(--text-secondary);
    opacity: 0.6;
}

/* Revenue Summary */
.revenue-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.revenue-item {
    padding: 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 0.5px solid var(--glass-border);
    border-radius: var(--radius-sm);
}

.revenue-label {
    font-size: 12px;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-bottom: 8px;
}

.revenue-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.revenue-change {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 8px;
}

.revenue-change.positive {
    background: rgba(52, 199, 89, 0.15);
    color: var(--success);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
}

.overlay.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --sidebar-width: 300px;
    }

    .sidebar {
        transform: translateX(100%);
    }

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

    .close-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .top-header {
        padding: 0 20px;
    }

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

    .dashboard-content {
        padding: 24px 20px;
    }

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

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

    .glass-card {
        padding: 24px;
    }

    .page-title h1 {
        font-size: 32px;
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }

    .header-actions {
        gap: 8px;
    }

    .header-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .stat-card {
        flex-direction: column;
        text-align: center;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .data-table {
        font-size: 12px;
    }

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

    .bar-chart {
        gap: 8px;
    }

    .search-box {
        display: none;
    }
}


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

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.25);
}

