/* ===================================
   DASHBOARD CARD
=================================== */

.dashboard-card {

    background: #fff;

    border-radius: 18px;

    padding: 1.2rem;

    box-shadow: 0 4px 18px rgba(0,0,0,0.08);

    border: 1px solid rgba(0,0,0,0.04);

    transition: 0.3s ease;
    
    width: 100%;

    height: 100%;
}

.dashboard-card:hover {

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

/* ===================================
   ICON
=================================== */

.dashboard-card .icon {

    width: 55px;

    height: 55px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.4rem;

    background: rgba(25,135,84,0.12);

    color: #198754;

    margin-bottom: 1rem;
}

/* ===================================
   TITLE
=================================== */

.dashboard-card h5 {

    font-size: 0.95rem;

    font-weight: 600;

    color: #666;

    margin-bottom: 0.4rem;
}

/* ===================================
   VALUE
=================================== */

.dashboard-card h2 {

    font-size: 2rem;

    font-weight: 700;

    color: #111;

    margin: 0;
}

/* ===================================
   DESCRIPTION
=================================== */

.dashboard-card p {

    font-size: 0.85rem;

    color: #888;

    margin-top: 0.7rem;

    margin-bottom: 0;
}

/* ===================================
   TABLET
=================================== */

@media (max-width: 992px) {

    .dashboard-card {

        padding: 1rem;
    }

    .dashboard-card h2 {

        font-size: 1.7rem;
    }
}

/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {

    .dashboard-card {

        border-radius: 15px;

        padding: 0.9rem;
    }

    .dashboard-card .icon {

        width: 48px;

        height: 48px;

        font-size: 1.2rem;

        margin-bottom: 0.8rem;
    }

    .dashboard-card h5 {

        font-size: 0.85rem;
    }

    .dashboard-card h2 {

        font-size: 1.5rem;
    }

    .dashboard-card p {

        font-size: 0.78rem;
    }
}

/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width: 480px) {

    .dashboard-card {

        padding: 0.8rem;
    }

    .dashboard-card h2 {

        font-size: 1.3rem;
    }

    .dashboard-card h5 {

        font-size: 0.8rem;
    }

    .dashboard-card p {

        display: none;
    }
}