html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* dropdown menu for country select */
#selectContainer {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

#countrySelect {
    width: 240px;
    cursor: pointer;
}

/* preloader cicle rotating mechanism */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background-color: #ffffff;
}

#loaderSpinner {
    width: 3rem;
    height: 3rem;
}

/* leaflet map layers */
.leaflet-tile-pane {
    z-index: 200 !important;
}

.leaflet-overlay-pane {
    z-index: 400 !important;
}

.leaflet-marker-pane {
    z-index: 600 !important;
}

.leaflet-popup-pane {
    z-index: 700 !important;
}

/* weather modal  */
.weather-day {
    border-right: 1px solid #ddd;
}

.weather-day:last-child {
    border-right: none;
}

#weatherTemp {
    font-size: 2.5rem;
    margin-bottom: 0;
    font-weight: normal;
}

#weatherDescription {
    text-transform: capitalize;
}

/* getting rid of the line under country information modal window */
#countryOverviewModal table {
    margin-bottom: 0;
}

#countryOverviewModal .modal-footer {
    border-top: 0;
}   