:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --accent-color: #764ba2;
    --text-dark: #2d3436;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f0f2f5;
    color: var(--text-dark);
    min-height: 100vh;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.premium-btn {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    font-weight: 600;
}

.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(118, 75, 162, 0.4);
    color: white;
}

.navbar-premium {
    background: var(--primary-gradient);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sidebar-premium {
    position: fixed;
    top: 56px;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 20px 0 0;
    background: white;
    border-right: 1px solid #eee;
}

.sidebar-premium .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 15px;
    margin-bottom: 5px;
    transition: all 0.3s;
}

.sidebar-premium .nav-link:hover {
    background: rgba(118, 75, 162, 0.05);
    color: var(--accent-color);
}

.sidebar-premium .nav-link.active {
    background: var(--primary-gradient) !important;
    color: white !important;
    box-shadow: 0 4px 10px rgba(118, 75, 162, 0.3);
}

/* Mobile-first adjustments */
@media (max-width: 991.98px) {
    .sidebar-premium {
        display: none;
    }
}

/* DataTables customization */
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: var(--primary-gradient) !important;
    border: none !important;
    color: white !important;
}

.jifty-slider {
    overflow-x: auto;
    display: flex;
    gap: 15px;
    padding: 10px 5px;
}

.jifty-card {
    min-width: 240px;
    padding: 20px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.jifty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.stat-card {
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    background: white;
}

.stat-card .stat-icon {
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.timeline-item {
    position: relative;
}

.timeline-item:last-child {
    border-bottom: none !important;
}

.hover-shadow-sm:hover {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

.transition-all {
    transition: all 0.3s ease;
}

.italic {
    font-style: italic;
}

.font-normal {
    font-weight: 400;
}
