

body {
    overflow-y: visible;
    scrollbar-width: thin !important;
}

::-webkit-scrollbar {
    height: 8px;
    width: 8px;
    background: #444;
}

::-webkit-scrollbar-thumb {
    background: #393812;
    -webkit-border-radius: 1ex;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.75);
}

::-webkit-scrollbar-corner {
    background: #000;
}
/* top nav */

.topnav-title {
    font-size:xx-large;
    color: red;
}

.topnav-title-small {
    font-size: x-small;
}

.topnav-small {
    /* transform: translateY(25%); */
    text-transform: uppercase;
}

.topnav a {
    font-size: 17px;
}

.topnav-dropdown-content {
    min-width: 160px;
    transform: translateY(30px) translateX(-10px);
}


/* end of top nav */

.measuring-div {
    height: calc(100vh - var(--nav-height));
    width: calc(100vw - 20px);
    position: absolute;
    display: hidden;
    z-index: -1;
    top: 0;
    left: 0;
}

/* Front page */

/* End of Front Page*/

.score-pane-pursuit {
    height: fit-content;

    background-color: #444;
    margin-top: 30px;
    padding: 10px;
    border-radius: 5px;
}

/* game bar */
.game-bar {
    color:#cac9d4;
    /*height: 30px;*/
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 5px;

    /* font-size: var(--font-smaller); */
}

.game-bar-left {
    margin-left: 23.07%;
}

.game-bar-image {
    height: var(--font-small);
    width: var(--font-small);
}

.game-bar-name {
    
    /* font-weight: bold; */
    font-size: var(--font-smaller);
    padding-left: 7px;
    padding-right: 2px;
    
    overflow: hidden;
    white-space: nowrap;
    max-width: 100px;

    /* transform: translateY(5px); */
}

.game-bar-rating {
    font-size: var(--font-smaller);
    color:#9f9ea7;
    width: fit-content;
    /* transform: translateY(8px); */
    padding-left: 4px;
    padding-right: 4px;
}

/* end of game bar */

/* form */
.form {
    display: flex;
    flex-direction: column;
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: 600;
    min-width: 400px;
    font-size: var(--font-small);
    row-gap: 20px;
}

.form-title {
    font-size: var(--font-large);
    padding-bottom: 4px;
    margin-bottom: 15px;
    border-bottom: 2px solid #777;
}

.form-input-group label {
    padding: 5px;
    font-size:large;
}


/* end of form */