#map {
    height: 700px;
    width: 1000px;
    border: 5px solid rgb(0, 0, 0);
    margin: 20px auto;    
    display: block;       
}

.legend-control-container {
    background-color: #f5f5f5;
    padding: 10px;
    border: 2px solid #aaa;
    font-family: Arial, sans-serif;
    font-size: 14px;
    width: 220px;
}

#legend-city {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

#legend-labels div {
    margin-top: 5px;
}

#attribute-legend {
    margin-top: 5px;
    margin-bottom: 10px;
}

.legend-circle {
    fill: #ababab;
    stroke: #000000;
    stroke-width: 2px;
}
.sequence-control-container {
    display: flex;
    flex-direction: column;   
    align-items: center;
    padding: 10px;
    background-color: rgba(74, 74, 74, 0.774);
    border: solid rgba(0, 0, 0, 0.781) 1px;
    gap: 5px;  
}

.button-row {
    display: flex;
    flex-direction: row;    
    align-items: center;
    gap: 10px;
}

.slider-label {
    font-size: 12px;
    color: #fff4f4bd;
    text-align: center;
}

.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    width: 400px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.popup-content button {
    margin-top: 15px;
    padding: 8px 15px;
    background: #5dade2;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.map-sources {
    text-align: center;       
    font-size: 14px;
    margin-top: 15px;
    color: #333;
    width: 100%;              
}

.sequence-control-container .step {
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
}


.map-sources a {
    color: #1f2aa8;
    text-decoration: none;
}

.map-sources a:hover {
    text-decoration: underline;
}

