/* Style for map container */
#map_container, #map_visible {
    position: relative;
}
#map {
    height: 600px;
    width: 100%;
    background-color: #fff;
    border:0 solid #003747;
    border-radius: 0;
}
#locations {
    position: absolute;
    top: 0;
    left: 5px;
    z-index: 1000;
    height: 40px;
}
/* Style for dropdown */
select {
    padding: 8px;
    font-size: 16px;
    margin-top: 10px;
    background-color: #fff;
    color: #000;
}
/* Style for legend */
#legend {
    position: absolute;
    right: 0;
    top: 0;
    font-family: "URWDINCond-Bold", sans-serif !important;
    background-color: #003747;
    margin: 5px;
    color: #fff;
    border: 8px solid #fff;
    border-radius: 6px;
    text-align: left;
    width: 360px;
}
.fr-page #legend {
    width: 480px;
}
.cr-page #legend {
    width: 480px;
}
#legend > p {
    display: flex;
    align-items: flex-start;
    font-size: 18px;
    line-height: 18px;
}
#legend div p {
    font-size: 20px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 0.5rem !important;
}
#legend img {
    margin-right: 8px;
    margin-top: 0;
    float: left;
    width: 24px;
}
#csp_info, #csp_info_fr {
    display: none;
    text-align: left;
    padding: 20px;
    border-radius: 0 !important;
    border-bottom: 4px solid #003747 !important;
}
.pale-green {
    color: #73bf7e;
}
.pale-orange {
    color: #FFB660;
}
.din-condensed-light {
    font-family: "URWDINCond-Light", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-shadow: none;
}
.din-condensed-medium {
    font-family: "URWDINCond-Medium", sans-serif;
    font-weight: 100;
    font-style: normal;
    text-shadow: none;
}
.din-condensed-bold {
    font-family: "URWDINCond-Bold", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    text-shadow: none;
}
/* Spinner styles */
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@media (max-width: 767px) {
    #map {
        height: 400px;
        width: 100%;
        margin-top: 20px;
    }
    #legend {
        position: relative;
        width: 100%;
        margin: 0;
    }
    .legend-button {
        display: block;
    }
}