
body {
    background-color: #f4f6f9;
    padding: 2rem 0;
}

.container {
    max-width: 800px;
}

.card-panel {
    border-radius: 8px;
    padding: 40px;
}

/* --- Form Step Styling (Unchanged) --- */
.progress-container { margin: 20px 0 30px 0; }
.form-container { margin-top: 2rem; }
.form-step { display: none; animation: fadeIn 0.5s; }
.form-step.active-step { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.step-title { margin-bottom: 2rem; font-weight: 300; border-bottom: 2px solid #ee6e73; padding-bottom: 10px; }
.form-navigation { margin-top: 30px; display: flex; justify-content: space-between; align-items: center; }
#prevBtn, #submitBtn { display: none; }
.conditional-section { display: none; margin-top: 2rem; padding: 20px; background-color: #fafafa; border: 1px solid #e0e0e0; border-radius: 5px; }
.input-field label { color: #9e9e9e; }

/* --- NEW: Map and Chip Styling --- */
.map-container {
    height: 350px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 10px;
    background-color: #e3f2fd; /* Light blue background */
}

.chip-container {
    padding: 5px 0;
    min-height: 40px; /* Ensure space even when empty */
}

.chip-container .chip {
    background-color: #26a69a; /* Teal */
    color: white;
}
.chip-container .chip .close {
    color: white;
    font-size: 18px;
    line-height: 32px; /* Vertically center */
    padding-left: 8px;
}

/* --- NEW: Slider Styling --- */
.slider-value {
    font-size: 1.2rem;
    font-weight: 500;
    color: #26a69a;
    margin-bottom: 20px;
}

.slider {
    margin: 30px 5px 25px 5px;
}

/* noUiSlider theme overrides */
.noUi-target {
    background: #FAFAFA;
    border-radius: 4px;
    border: 1px solid #D3D3D3;
    box-shadow: none;
}
.noUi-connect {
    background: #26a69a; /* Teal */
}
.noUi-handle {
    border: 1px solid #D9D9D9;
    border-radius: 50%;
    background: #FFF;
    box-shadow: none;
    cursor: grab;
}
.noUi-handle:focus {
    outline: none;
}