/* Custom Styles */
#map { 
    height: 60vh; /* Viewport height */
    width: 100%;
}
/* Style adjustments for Choices.js to better fit Bootstrap */
.choices__inner {
    background-color: #fff;
    border-radius: 0.375rem; /* Bootstrap's default border-radius */
    border: 1px solid #dee2e6; /* Bootstrap's default border */
    padding: 0.375rem 0.75rem;
    min-height: auto;
}
.choices[data-type*="select-one"] {
    margin-bottom: 0;
}
.choices__list--dropdown {
        z-index: 1050; /* Ensure dropdown is above other elements */
}
/* This ensures the dropdown container itself has the correct z-index */
.dropdown-container {
    position: relative;
    z-index: 1000;
}