/* assets/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    --primary: #4361ee;
    --secondary: #3f37c9;
    --dark: #1e1e2d;
    --light: #f8f9fa;
    --success: #4cc9f0;
    --shadow: 0 10px 30px 0 rgba(82, 63, 105, 0.08);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f5f9;
    margin: 0;
}

#wrapper {
    display: flex;
}

/* Prachtige Sidebar */
#sidebar-wrapper {
    min-height: 100vh;
    width: 280px;
    background: var(--dark);
    box-shadow: 10px 0 30px rgba(0,0,0,0.05);
    z-index: 100;
}

.sidebar-brand {
    padding: 2.5rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-link {
    color: #a2a3b7 !important;
    padding: 12px 25px !important;
    margin: 5px 15px;
    border-radius: 10px;
    transition: all 0.3s;
    font-weight: 500;
}

.nav-link:hover {
    background: rgba(255,255,255,0.05);
    color: white !important;
}

.nav-link.active {
    background: var(--primary) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.4);
}

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

/* Hoofd Content */
#page-content-wrapper {
    flex: 1;
    padding: 30px;
}

/* Shadow Cards */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    background: #fff;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

/* Custom Table */
.table {
    border-radius: 12px;
    overflow: hidden;
}

.table thead th {
    background-color: #f8f9fa;
    border-bottom: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 15px;
}

.table td {
    padding: 15px;
    vertical-align: middle;
}

/* Stat-icons */
.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}