.stat-card {
    background: white;
    border-radius: 12px;
    padding: .75rem;
    margin-bottom: .75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.stat-card h3 {
    color: #1e3a5f;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e9ecef;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f3f5;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    color: #6c757d;
    font-size: 0.95rem;
    font-weight: 500;
}

.stat-value {
    color: #1e3a5f;
    font-weight: 600;
    font-size: 1.1rem;
}

.stat-value.large {
    font-size: 1.5rem;
    color: #0066cc;
}

.stat-secondary {
    color: #6c757d;
    font-size: 0.85rem;
    font-weight: 400;
    margin-left: 0.5rem;
}

.highlight-card {
    background: linear-gradient(135deg, lightskyblue 0%, rgb(11, 157, 248) 100%);
    color: white;
    margin-bottom: 1.5rem;
}

.highlight-card h3 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.highlight-card .stat-label {
    color: rgba(255, 255, 255, 0.85);
}

.highlight-card .stat-value {
    color: white;
}

.highlight-card .stat-item {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.metric-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.metric-box .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a5f;
    display: block;
}

.metric-box .label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.25rem;
    display: block;
}

.badge-custom {
    background: #e7f3ff;
    color: #0066cc;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}