ç.container {
    width: 100%;
}

.modeSelector {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.25rem;
    background: #f8fafc;
    border-radius: 8px;
}

.modeBtn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.modeBtn:hover {
    background: white;
    color: #334155;
}

.modeBtnActive {
    background: white;
    color: var(--color-primary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.radiusControl {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.radiusControl label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #334155;
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sliderLabels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

.mapLoading {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 12px;
    color: #64748b;
}

.helpText {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #eff6ff;
    border-left: 3px solid var(--color-primary);
    border-radius: 6px;
    font-size: 0.9rem;
    color: #334155;
}

.helpText p {
    margin: 0 0 0.5rem 0;
}

.helpText ol {
    margin: 0;
    padding-left: 1.5rem;
}

.helpText li {
    margin-bottom: 0.25rem;
    line-height: 1.5;
}ç*cascade082…file:///c:/Users/Victoria/OneDrive/Escritorio/Proyectos%20Antigravity/Derpa%20Tech/web/src/components/map/LocationSelector.module.css