/* General Body and HTML Styling */
html, body {
    margin: 0;
    padding: 0;
}

  
#selectContainer {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 11px 0;
}
  
#select {
    width: 200px;
    margin: 0 auto;
}

/* Leaflet Map Styles */
#map {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
}


/* Easy Button Styles */
.easy-button-container {
    border: none !important;
}

.easy-button-button {
    border-radius: 50% !important;
    border: 2px solid rgba(0, 0, 0) !important;
    height: 40px !important;
    width: 40px !important;
}

.easy-button-button span {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Leaflet Zoom Control */
.leaflet-control-zoom {
    margin-left: 13px !important;
}

.leaflet-control-zoom-in, .leaflet-control-zoom-out {
    background-color: #484847 !important;
}

/* Map Markers and Clusters */
.cityCluster, .airportCluster, .hospitalCluster, .monumentCluster {
    height: 35px !important;
    width: 35px !important;
    border-radius: 50% !important;
    text-align: center !important;
    font-weight: bold !important;
    font-size: large !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.cityCluster {
    background-color: rgba(22, 19, 216, 0.4) !important;
    border: 5px solid rgba(9, 5, 107, 0.7);
    color: rgb(42, 41, 41) !important;
}

.airportCluster {
    background-color: rgba(187, 1, 187, 0.4) !important;
    border: 5px solid rgba(86, 2, 86, 0.7);
    color: rgb(42, 41, 41) !important;
}

.hospitalCluster {
    background-color: rgba(207, 4, 4, 0.4) !important;
    border: 5px solid rgba(170, 8, 19, 0.7);
    color: rgb(42, 41, 41) !important;
}

.monumentCluster {
    background-color: rgba(90, 62, 34, 0.4) !important;
    border: 5px solid rgba(68, 45, 6, 0.7);
    color: rgb(42, 41, 41) !important;
}

.leaflet-div-icon {
    background: none !important;
    border: none !important;
}

/* Modal Styling */

.carousel-control-next-icon, .carousel-control-prev-icon {
    background-color: #211f1c !important;
}


/* Button Color Styling */

#wiki-button {
    background-color: #4fe6f4 !important;
}

#info-button {
    background-color: #50504a !important;
}

#currency-button {
    background-color: #ef9227 !important;
}

#news-button {
    background-color: #c4c6c4 !important;
}

#weather-button {
    background-color: #4a8aff !important;
}


.markers-off {
    background-color: #b1b1b1 !important;
    color: #464646 !important;
}


/* Table Styling in Modals */
table {
    --bs-table-bg: #ffffff00 !important; /* Make table background fully transparent */
    vertical-align: middle !important;
}

.modal-body img {
    max-width: 100%;
    height: auto;
}

.modal-content-news {
    max-height: 80% !important;
}

.modal-content-wiki {
    max-height: 80% !important;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
  }
  
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #56829e;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
  }
  
  @-webkit-keyframes animate-preloader {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-preloader {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  
