.map-legend {
    padding: var(--space-sm) var(--space-md);
    border-top: 1px solid var(--color-border);
    background: var(--color-surface);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    min-height: 60px;
}

.map-legend__bar {
    display: flex;
    width: 100%;
    max-width: 480px;
    height: 16px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
}

.map-legend__bar-segment {
    flex: 1 1 0;
    height: 100%;
}

.map-legend__ticks {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 480px;
    font-size: 0.75rem;
    color: var(--color-text);
}

.map-legend__unit {
    font-size: 0.75rem;
    color: var(--color-text-muted, #666);
}