:root {
    --light: #d8dbe0;
    --dark: rgba(0, 0, 0, 0.683);
}

#observations {
    display: flex;
}

#schools {
    display: none;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    display: flex;
}

#map {
    position: absolute;
    height: 100%;
    width: 100%;
}

/* Custom styles for zoom controls */
.custom-zoom {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 10px;
    background: white;
    border-radius: 3px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.custom-zoom button {
    width: 30px;
    display: block;
    margin: 5px 0;
    height: 30px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    border-radius: 3px;
}

/* Style for the search box */
#search-box {
    top: 10px;
    left: 10px;
    width: 440px;
    border: none;
    height: 19px;
    outline: none;
    padding: 15px;
    font-size: 15px;
    color: white;
    position: absolute;
    border-radius: 40px;
    backdrop-filter: blur(50px);
    background: rgba(0, 0, 0, 0.25);
    font-family: "Comfortaa", sans-serif;
    transition: all 0.1s ease-in-out;
}

#search-box::placeholder {
    color: #D3D3D3;
    font-family: "Comfortaa", sans-serif;
}

#search-box:hover {
    top: 12px;
}

#search-box:focus {
    background: rgba(0, 0, 0, 0.38);
    animation: select 0.5s 1;
}

@keyframes select {
    0% {
        scale: 100%;
    }

    50% {
        scale: 99.6%;
    }

    100% {
        scale: 100%;
    }
}

.pac-container {
    backdrop-filter: blur(50px);
    background: rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    font-family: "Comfortaa", sans-serif;
    margin-top: 5px;
    padding: 10px;
    border: none;
    outline: none;
    box-shadow: none;
}

.pac-item {
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.076);
    border-radius: 15px;
    margin-top: 5px;
    padding: 7px;
    border: none;
    outline: none;
    color: rgb(202, 202, 202)
}

.pac-item:hover {
    margin-top: 5px;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.541);
    border-radius: 15px;
    margin-top: 5px;
    padding: 10px;
    border: none;
    outline: none;
}

.pac-item-selected {
    margin-top: 5px;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.541);
    border-radius: 15px;
    margin-top: 5px;
    padding: 10px;
    border: none;
    outline: none;
}

.pac-container:after {
    background-image: none !important;
    height: 0px;
}

.pac-item-query {
    color: white;
}

.place-info {
    top: 70px;
    left: 10px;
    width: 456px;
    padding: 7px;
    font-size: 15px;
    color: white;
    position: absolute;
    border-radius: 20px;
    backdrop-filter: blur(50px);
    background: rgba(0, 0, 0, 0.25);
    font-family: "Roboto", serif;
    transition: all 0.1s ease-in-out;
}

.material-symbols-outlined {
    margin-right: 10px;
    color: white;
}

.place-population {
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.076);
    border-radius: 15px;
    margin: 5px;
    padding: 10px;
    text-align: center;
    justify-content: left;
    display: flex;
    border: none;
    outline: none;
    color: rgb(255, 255, 255)
}

.zoom {
    display: flex;
    bottom: 60px;
    margin: 10px;
    right: 100px;
    border: none;
    outline: none;
    font-size: 15px;
    color: white;
    position: absolute;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    backdrop-filter: blur(50px);
    background: rgba(0, 0, 0, 0.683);
    font-family: sans-serif;
    transition: all 0.3s ease-in-out;
}

.zoom button {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
    margin: 0px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    transition: background-color 0.3s;
    outline: none;
    align-items: center;
    justify-content: center;
}

.zoom button:hover {
    background: rgba(0, 0, 0, 0.372);
}

.zoom button:not(:last-child) {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-right: 1px solid #ffffff;
}

.view-options {
    display: flex;
    top: 5px;
    margin: 10px;
    height: 40px;
    right: 0px;
    padding: 4px;
    border: none;
    outline: none;
    font-size: 15px;
    color: white;
    position: absolute;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    backdrop-filter: blur(50px);
    background: rgba(0, 0, 0, 0.683);
    font-family: "Comfortaa", sans-serif;
    transition: all 0.3s ease-in-out;
}

.view-options option {
    background: none;
    border: none;
    padding: 5px;
    margin: 5px;
    cursor: pointer;
    font-size: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
    outline: none;
    align-items: center;
    justify-content: center;
}

.view-options option[selected] {
    background-color: #ffffff;
    color: #000000;
    font-weight: bold;
}

.view-options option:hover {
    background: rgba(221, 221, 221, 0.372);
}

.view-options option[selected]:hover {
    background-color: #ffffff;
    color: #000000;
    font-weight: bold;
}

.graph-options {
    display: flex;
    bottom: 60px;
    margin: 10px;
    right: 190px;
    padding: 4px;
    border: none;
    outline: none;
    font-size: 15px;
    color: white;
    position: absolute;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    backdrop-filter: blur(50px);
    background: rgba(0, 0, 0, 0.683);
    font-family: "Comfortaa", sans-serif;
    transition: all 0.3s ease-in-out;
}

.graph-options option {
    background: none;
    border: none;
    padding: 5px;
    margin: 5px;
    cursor: pointer;
    font-size: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
    outline: none;
    align-items: center;
    justify-content: center;
}

.graph-options option[selected] {
    background-color: #ffffff;
    color: #000000;
    font-weight: bold;
}

.graph-options option:hover {
    background: rgba(221, 221, 221, 0.372);
}

.graph-options option[selected]:hover {
    background-color: #ffffff;
    color: #000000;
    font-weight: bold;
}

.timeline {
    display: flex;
    bottom: 5px;
    margin: 10px;
    width: calc(100vw - 60px);
    border: none;
    height: 19px;
    outline: none;
    padding: 15px;
    font-size: 15px;
    color: white;
    position: absolute;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    backdrop-filter: blur(50px);
    background: rgba(0, 0, 0, 0.25);
    font-family: sans-serif;
    transition: all 0.3s ease-in-out;
}

.timeline-slider {
    -webkit-appearance: none;
    /* padding: 10px; */
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 2px;
    border-radius: 5px;
    backdrop-filter: blur(50px);
    background: rgba(0, 0, 0, 0.25);
    outline: none;
    /* opacity: 0.7; */
    /* -webkit-transition: .2s; */
    /* transition: opacity .2s; */
}

.slider-text {
    padding: 7px;
    margin: 5px;
    font-size: 14px;
    color: black;
    background: rgba(255, 255, 255, 0.549);
    border-radius: 5px;
}

.timeline-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    left: -10px;
    appearance: none;
    width: 17px;
    height: 17px;
    border-radius: 50px;
    background: #252525;
    cursor: pointer;
}

.timeline-slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #4CAF50;
    cursor: pointer;
}

/* Small vertical bars */
.small-bar {
    position: absolute;
    /* top: -10px; */
    /* Adjust this value to move the bars outside the slider */
    height: 17px;
    /* Adjust this value to extend the bars outside the slider */
    width: 1px;
    background: #000;
}

/* Large vertical bars */
.large-bar {
    position: absolute;
    /* top: -15px; */
    /* Adjust this value to move the bars outside the slider */
    height: 25px;
    /* Adjust this value to extend the bars outside the slider */
    width: 1.5px;
    background: #000;
}

a[href^="http://maps.google.com/maps"]{display:none !important}
a[href^="https://maps.google.com/maps"]{display:none !important}

.gmnoprint a, .gmnoprint span, .gm-style-cc {
    display:none;
}
.gmnoprint div {
    background:none !important;
}