/* Scrollable panel */
.card-body {
    padding: 0.5rem 1rem;
}

.card-body::-webkit-scrollbar {
    width: 6px;
}

.card-body::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.3);
    border-radius: 3px;
}




/* Dashboard-specific statistic styles */
.stat-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}


.stat-value {
    font-size: 28px;
    font-weight: 700;
}

.stat-sub {
    font-size: 13px;
    color: #888;
}

