/**
 * Stats Card Component Styles
 * Reusable compact stats cards for displaying metrics
 */

/* Compact Stats Cards */
.noti-box {
    min-height: 80px !important;
    margin-bottom: 15px !important;
    display: flex !important;
    align-items: center !important;
    padding: 15px !important;
}

.noti-box .icon-box {
    width: 50px !important;
    height: 50px !important;
    line-height: 50px !important;
    font-size: 18px !important;
    margin-right: 15px !important;
    flex-shrink: 0 !important;
}

.noti-box .text-box {
    margin-left: 0 !important;
    padding: 0 !important;
    flex: 1 !important;
}

.noti-box .main-text {
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-bottom: 2px !important;
    line-height: 1.2 !important;
}

.noti-box .text-muted {
    font-size: 16px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    color: #2c3e50 !important;
}

/* Override hover effects that hide spans */
.noti-box p:hover span {
    display: inline !important;
}

.noti-box span {
    display: inline !important;
}

/* Responsive adjustments for compact cards */
@media (max-width: 768px) {
    .noti-box {
        min-height: 70px !important;
        padding: 12px !important;
    }

    .noti-box .icon-box {
        width: 45px !important;
        height: 45px !important;
        line-height: 45px !important;
        font-size: 16px !important;
        margin-right: 12px !important;
    }

    .noti-box .text-box {
        margin-left: 0 !important;
        padding: 0 !important;
    }

    .noti-box .main-text {
        font-size: 14px !important;
    }

    .noti-box .text-muted {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .noti-box {
        min-height: 65px !important;
        padding: 10px !important;
    }

    .noti-box .icon-box {
        width: 40px !important;
        height: 40px !important;
        line-height: 40px !important;
        font-size: 14px !important;
        margin-right: 10px !important;
    }

    .noti-box .main-text {
        font-size: 13px !important;
    }

    .noti-box .text-muted {
        font-size: 12px !important;
    }
}
