* {
    box-sizing: border-box;
}

html, body {
    background-color: black;
    margin: 0;
    height: 100%;
}

.map-container {
    background-color: blanchedalmond;
    position: relative;
    width: 100%;
    height: 100%;
    margin: auto;
}

.map {
    height: 100%;
}

.menu {
    position: absolute;
    top: 0;
    background-color: rgba(255, 255, 255, 0.9); /* 191, 131, 42 */
    height: 100%;
    width: 100%;
    z-index: 1000;
}

.menu-commands {
    max-height: 100%;
}

.menu-command {
    background-color: rgba(255, 255, 255, 1);
    max-width: max-content;
    padding: 1em;
    border-radius: 0.25rem;
}

.search-results {
    overflow: auto;
    max-height: 80vh;
}

.search-result {
    padding: 1em 0;
}

.search-result:hover {
    cursor: pointer;
}

.hidden {
    display: none;
}

.command {
    z-index: 10000;
    position: absolute;
    border-radius: 50%;
    background-color: rgb(42, 99, 191);
    height: 2em;
    width: 2em;
    z-index: 10000;
}

.command-selected {
    background-color: rgb(132, 35, 35);
}

.info-box {
    z-index: 10000;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.75);
    color: whitesmoke;
    padding: 1em;
    border-radius: 0.25rem;
}

.info-box-group {
    margin: 0.5rem 0;
}

.info-box-group-title {
    font-weight: bold;
}

.top-left {
    left: 1rem;
    top: 1rem;
}

.top-right {
    right: 1rem;
    top: 1rem;
}

.bottom-left {
    left: 1rem;
    bottom: 1rem;
}

.bottom-right {
    right: 1rem;
    bottom: 1rem;
}

.user-icon {
    height: 2em !important;
    width: 2em !important;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    border: 3px solid rgb(42, 99, 191);
}