body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

@media (prefers-color-scheme: dark) {
    body {
      background-color: #191919;
      color: white;
    }
}

.loading {
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    width: 100%; 
    height: 100%; 
    position: absolute;
    gap: 40px;
}

.loader {
    width: 48px;
    height: 48px;
    /* opacity: .3; */
}

.progress {
    width: 300px;
    height: 6px;
    background-color: #ffbb004c;
    border-radius: 10px;
    overflow: hidden;
    transition: opacity 0.25s ease-out;
}

.progressbar {
    display: block;
    height: 100%;
    background-color: #FFBA00;
    width: 0;
    border-radius: 10px;
    transition: width 0.5s ease;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    60% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.gmnoprint.gm-bundled-control.gm-bundled-control-on-bottom {
    bottom: 46px !important;
    right: 46px !important;
}

div:focus-visible {
    outline: none !important;
}

.infowindow-title, .infowindow-snippet {
    color: #000 !important;
}