.status-badge {
    width: 100px;
    text-align: center;
}

.stat-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.stat-label {
    color: #6c757d;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.stat-trend {
    font-size: 0.875rem;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.trend-up {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.trend-down {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.bg-purple {
    background: linear-gradient(45deg, #6f42c1, #8250df);
}

.bg-ocean {
    background: linear-gradient(45deg, #0dcaf0, #0d6efd);
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, .075);
}

.progress {
    height: 8px;
}