body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f7fb;
}

.app-wrapper {
    display: flex;
}

/* SIDEBAR */

.sidebar {
    width: 260px;
    min-height: 100vh;
    background: #ffffff;
    border-right: 1px solid #e5e7eb;
    padding: 20px;
}

.sidebar-brand {
    font-size: 24px;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 30px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 8px;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #374151;
    padding: 12px 14px;
    border-radius: 12px;
    transition: 0.3s;
}

.sidebar-menu li a:hover {
    background: #eef2ff;
    color: #2563eb;
}

.menu-title {
    font-size: 12px;
    text-transform: uppercase;
    color: #9ca3af;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* MAIN */

.main-content {
    flex: 1;
}

/* TOPBAR */

.topbar {
    background: white;
    padding: 18px 25px;
    border-bottom: 1px solid #e5e7eb;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* CONTENT */

.content-area {
    padding: 25px;
}

/* DASHBOARD CARDS */

.dashboard-card {
    background: white;
    border-radius: 22px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.dashboard-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 24px;
}

.dashboard-title {
    font-size: 14px;
    color: #6b7280;
}

.dashboard-count {
    font-size: 28px;
    font-weight: bold;
    color: #111827;
}
.active-menu {
    background-color: #dbeafe;
    color: #2563eb;  
    font-weight: 600;
}

.active-menu i {
    color: #2563eb ;
}