.stats-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1rem 1rem 1rem 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
}

.chart-container {
    position: relative;
    height: 350px;
    width: 100%;
}

.chart-container-tall {
    position: relative;
    height: 400px;
    width: 100%;
}

.stat-badge {
    display: flex;
    align-items: center;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 0.5px solid #e2e8f0;
    transition: all 0.2s;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.stat-badge:hover {
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.stat-value {
    font-weight: 600;
    color: #1a202c;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.stat-label {
    color: #4a5568;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}
