body {
    background: linear-gradient(90deg, #e3ffe7 0%, #d9e7ff 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
    color: black;
    font-size: 16px;
}


/*=========================================
HEADER
=========================================*/

.dashboardHeader {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .18);
}

.dashboardHeader h2 {
    color: white;
    font-weight: 700;
    margin: 0;
}

.dashboardHeader p {
    color: #dbeafe;
    margin-top: 5px;
}


/*=========================================
NAVIGATION
=========================================*/

.navButton {
    display: inline-block;
    padding: 10px 18px;
    background: white;
    border-radius: 40px;
    text-decoration: none;
    margin-left: 8px;
    color: #2563eb;
    font-weight: 600;
    transition: .3s;
}

.navButton:hover {
    background: #dbeafe;
    transform: translateY(-3px);
}

.activeNav {
    background: #facc15;
    color: #111827;
}

.logoutButton {
    display: inline-block;
    padding: 10px 18px;
    background: #ef4444;
    border-radius: 40px;
    text-decoration: none;
    margin-left: 8px;
    color: white;
    font-weight: 600;
    transition: .3s;
}

.logoutButton:hover {
    background: #dc2626;
    color: white;
}


/*=========================================
SEARCH PANEL
=========================================*/

.searchPanel {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    margin-bottom: 30px;
}

.searchPanel label {
    font-weight: 600;
    color: #374151;
}

.searchPanel input,
.searchPanel select {
    height: 48px;
}


/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px) {
    .dashboardHeader {
        text-align: center;
    }
    .dashboardHeader .text-end {
        text-align: center!important;
        margin-top: 15px;
    }
    .navButton,
    .logoutButton {
        margin-top: 8px;
    }
}


/*=========================================
STATISTICS CARDS
=========================================*/

.statsCard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px;
    border-radius: 22px;
    color: white;
    height: 150px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .12);
    transition: .35s;
}

.statsCard:hover {
    transform: translateY(-8px);
}

.statsCard small {
    font-size: 15px;
    opacity: .9;
}

.statsCard h2 {
    margin-top: 10px;
    font-size: 38px;
    font-weight: 700;
}

.statsCard i {
    font-size: 55px;
    opacity: .25;
}

.statsBlue {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.statsGreen {
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.statsOrange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.statsPurple {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

.statsRed {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.statsDark {
    background: linear-gradient(135deg, #374151, #111827);
}


/*=========================================
RESULT TABLE
=========================================*/

.resultTableCard {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.resultTableCard table {
    margin-bottom: 0;
}

.resultTableCard thead {
    background: #2563eb;
    color: white;
}

.resultTableCard thead th {
    border: none;
    padding: 15px;
    font-weight: 600;
}

.resultTableCard tbody td {
    vertical-align: middle;
    padding: 15px;
}

.resultTableCard tbody tr:hover {
    background: #f8fbff;
}


/*=========================================
CHARTS
=========================================*/

.chartCard {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.chartCard h4 {
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 10px;
}


/*=========================================
RECENT ACTIVITY
=========================================*/

.activityCard {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.activityCard h4 {
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 15px;
}

.activityItem {
    display: flex;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #ececec;
}

.activityItem:last-child {
    border-bottom: none;
}

.activityIcon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.activityContent {
    flex: 1;
}

.activityContent h6 {
    margin: 0;
    font-weight: 700;
    color: #212529;
}

.activityContent p {
    margin: 3px 0 0;
    color: #6c757d;
}

.activityRight {
    text-align: right;
}

.activityRight small {
    color: #6c757d;
    line-height: 1.4;
}