:root {
    --primary-color: #4f46e5;
    --secondary-color: #06b6d4;
    --dark-color: #111;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Unified Typography */
body {
    font-family: 'Poppins', sans-serif;
}

/* Unified Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #4338ca;
    border-color: #4338ca;
}

/* Premium Card Style for Dashboard */
.card-premium {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: var(--card-shadow);
}

.card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Offcanvas Sidebar Styles */
.sidebar-offcanvas {
    width: 280px;
    background-color: var(--dark-color);
}

.nav-link-custom {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.nav-link-custom:hover, .nav-link-custom.active {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-link-custom i {
    font-size: 1.2rem;
    width: 25px;
}

/* Table responsiveness */
.table-responsive {
    border-radius: 10px;
    overflow: hidden;
}
