* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Body and Map */
html,
body {
    width: 100%;
    height: 100%;
}

#map {
    width: 100%;
    height: 100vh;
    position: relative;
}

/* Country Selector */
#selectContainer {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
}

#countrySelect {
    width: 100%;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 8px;
}

/* Modal Button */
.map-overlay {
    position: absolute;
    top: 150px;
    left: 10px;
    z-index: 1000;
}

/* Easy Button Customization */
.leaflet-bar .easy-button-button {
    width: 40px !important;
    height: 40px !important;
    font-size: 24px;   
}

.leaflet-bar .easy-button-button img {
    width: 35px;
    height: 35px;
	margin-top:3px;
}

.modal-body-scrollable {
    max-height: 500px; 
    overflow-y: auto; 
}

#currencyModal {
    width: 100%;
    margin-top: 120px;
}

.nowrap {
    white-space: nowrap;
}



