body {
    background: #f4f7fc;
    font-family: Segoe UI, sans-serif;
}

.dashboardHeader {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
}

.dashboardHeader h2 {
    color: white;
    font-weight: 700;
    margin: 0;
}

.dashboardHeader p {
    color: #dbeafe;
    margin-top: 5px;
}

.navButton {
    display: inline-block;
    padding: 10px 18px;
    background: white;
    color: #2563eb;
    text-decoration: none;
    border-radius: 40px;
    margin-left: 8px;
    font-weight: 600;
    transition: .3s;
}

.navButton:hover {
    background: #dbeafe;
    transform: translateY(-3px);
}

.logoutButton {
    display: inline-block;
    padding: 10px 18px;
    background: #ef4444;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    margin-left: 8px;
    font-weight: 600;
    transition: .3s;
}

.logoutButton:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-3px);
}

.sectionHeading {
    font-weight: 700;
    color: #374151;
    margin-bottom: 25px;
}

@media(max-width:992px) {
    .dashboardHeader {
        text-align: center;
    }
    .dashboardHeader .text-end {
        text-align: center!important;
        margin-top: 20px;
    }
    .navButton,
    .logoutButton {
        margin-top: 8px;
    }
}


/*=========================================
STAT CARDS
=========================================*/

.statCard {
    border-radius: 20px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
    transition: .35s;
    height: 150px;
}

.statCard:hover {
    transform: translateY(-8px);
}

.statCard small {
    font-size: 15px;
    opacity: .9;
}

.statCard h2 {
    font-size: 40px;
    margin-top: 8px;
    font-weight: 700;
}

.statCard i {
    font-size: 55px;
    opacity: .25;
}


/* Colors */

.bgPrimary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.bgSuccess {
    background: linear-gradient(135deg, #16a34a, #15803d);
}

.bgWarning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.bgDanger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}


/*=========================================
ACTION CARDS
=========================================*/

.actionCard {
    display: block;
    background: linear-gradient(90deg, #e3ffe7 0%, #d9e7ff 100%);
    border-radius: 22px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .35s;
    height: 100%;
    color: #212529;
}

.actionCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
}

.actionIcon {
    width: 85px;
    height: 85px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 38px;
}

.actionCard h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.actionCard p {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.6;
}


/* Action Icon Colors */

.actionIcon.bg-primary {
    background: #2563eb;
}

.actionIcon.bg-success {
    background: #16a34a;
}

.actionIcon.bg-warning {
    background: #f59e0b;
}

.actionIcon.bg-danger {
    background: #ef4444;
}