html, body {
    width: 100%;
    overflow: hidden; /* Add this to hide the scroll bars */
    margin: 0; /* Add this to remove default margin */
    overflow-y: hidden !important;

}

#map {
    width: 100vw; /* Change to vw for full viewport width */
    height: 100vh;
    position: absolute; /* Ensure the map is positioned absolutely */}

#selectContainer {
    position: fixed;
    left: 50%; /* Set left to 50% */
    transform: translateX(-50%); /* Translate the container back by half of its own width */
    z-index: 1000; }
  
#countrySelect {
    width: 200px;
    margin: 0 auto; }

a {
    color: black !important; }

ol, ul {
    padding: 0rem !important; }

b, strong {
  padding-left: 1rem !important; }

.icon-container {
    margin-top: 0.5em; /* Add space between the table and the icon */
    text-align: center; }

.weather-icon {
    width: 4em;
    height: 4em;
    margin: 1em;
 }

.rounded-icon {
    border-radius: 10%; /* Use a high percentage for a circular shape */
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999; /* Ensure it's above all other elements */
}

#loader {
    border: 12px solid #f3f3f3;
    border-top: 12px solid #fec109;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

