html {
    color: #c0c0c5;
    background: #151515;
}
body {
    color: #c0c0c5;
    background: #1c1c1e;
    min-height: 98vh;
}

@media (prefers-color-scheme: light) {
    html {
        background-color: gray;
        color: black;
    }
    body {
        background-color: white;
        color: black;
    }
    #loading {
        background: rgba(207, 207, 207, 0.4) !important;
    }
}

@media (prefers-color-scheme: dark) {
    html {
        color: #c0c0c5;
        background: #151515;
    }
    body {
        color: #c0c0c5;
        background: #1c1c1e;
    }
    #loading {
        background: rgba(73, 73, 73, 0.4) !important;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, Helvetica, sans-serif;
    padding: 1px 18px 11px;
    margin: 0 auto;
    position: relative;
}

.material-symbols-outlined {
    vertical-align: middle;
    user-select: none;
}

a.material-symbols-outlined:hover {
    cursor: pointer;
}

.searchLocation:hover {
    cursor: pointer;
}

.lr {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.description {
    font-style: italic;
    font-size: smaller;
    color: gray;
}
