button.btn {
    margin-bottom: 5px;
}

#settingsbtn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    cursor: pointer;
    transition: 500ms;
}

#headerLogo {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1000;
    cursor: pointer;
    transition: 500ms;
}

#settingsbtn:hover {
    transform: rotate(90deg);
}

.flash-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px; /* Height of the progress bar */
    background-color: var(--bs-teal); /* Progress bar color */
}

@keyframes decrease-width {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

#map {
    min-height: 400px;
    margin: 2% auto;
}


.small-options {
    color: lightblue;
    font-size: 75%;
    vertical-align: top;
}

.aiChat {
    text-align: left;
    padding: 2%;
    font-size: 95%;
    border: 1px solid lightgray;
    border-radius: 5px;
    margin-bottom: 2%;
}