.chart-container {
    position: relative;
    height: 150px;
    margin-bottom: 1rem;
}

.metric-badges {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: nowrap;
}

.metric-badge {
    cursor: pointer;
    padding: 4px 12px;
    font-size: 12px;
    line-height: 16px;
    font-weight: normal;
    border-radius: 0.375rem;
    border: 1px solid #dee2e6;
    background: #f8f9fa;
    color: #6c757d;
    transition: all 0.2s;
    user-select: none;
}

.metric-badge:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.metric-badge.active {
    background: #6a5cff;
    color: white;
    border-color: #6a5cff;
}

.tab-badges-container {
    display: flex;
    gap: 8px;
}
