@import url('https://fonts.googleapis.com/css2?family=Reddit+Sans:ital,wght@0,200..900;1,200..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: busDisplayFont;
    src: url('./fonts/front-display');
}

body {
    background-color: black;
    color: white;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    font-size: 23px;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    margin: 0 0;
}

html {
    height: 100%;
}

.inline {
    display: inline-block;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
    width: 12px;
}

::-webkit-scrollbar:horizontal {
    height: 12px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .5);
    border-radius: 10px;
    border: 2px solid #ffffff;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #ffffff;
}

a {
    color: inherit;
}

.bdf {
    font-family: busDisplayFont;
}

#feedback-submit {
    cursor: pointer;
    font-size: 33px;
    margin-bottom: 53px;
    border-radius: 12px;
    transition: 150ms;

}

#feedback-submit:active {
    cursor: pointer;
    transition: 150ms;
    font-size: 32.5px;
    margin-bottom: 53px;
    border-radius: 12px;
}

#refresh-bar {
    z-index: 100000;
    background-color: rgb(0, 0, 0);
    width: 100%;
    height: 30px;
    position: relative;
}

#refresh-bar-notice {
    top: -10px;
    z-index: 1;
    background-color: rgb(131, 0, 0);
    width: 100%;
    height: 25px;
    position: fixed;
}

#updates-latest {
    color: white;
    border-radius: 7px;
    background-color: black;
    opacity: 100%;
    padding: 12px;
    line-height: 1.6;
}

#map {
    position: static !important;
    height: 60%;
    margin: 0 0;
}

#mapwrap {
    position: relative;
    margin-top: 120px;
    left: 0%;
    right: 0%;
    height: 100%;
    display: grid;
    width: 100%;
    text-align: center;
}

.button {
    user-select: none;
    cursor: pointer;
    display: inline-block;
    background-color: rgb(53, 53, 53);
    color: white;
    border: 2px solid rgb(0, 0, 0);
    border-radius: 4px;
    padding: 4px;
    margin-right: 5px;
    transition: 120ms;
}

.button:hover {
    user-select: none;
    cursor: pointer;
    display: inline-block;
    background-color: rgb(102, 102, 102);
    color: white;
    border: 2px solid rgb(0, 0, 0);
    border-radius: 4px;
    padding: 4px;
    margin-right: 5px;
    transition: 120ms;
}

#title {
    font-family: "Reddit Sans", sans-serif;
    font-weight: 900;
}