html {
    height: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    align-items: center;
    background: rgb(228, 231, 255);
    background: linear-gradient(216deg,
            rgba(228, 231, 255, 0.665703781512605) 0%,
            rgba(255, 240, 218, 0.6096813725490196) 100%);
}


.scrollable-section {
    overflow-y: scroll;
    flex: 1;
    width: 100vw;
    justify-content: center;
    box-sizing: border-box;
}

.content {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-width-limiter {
    width: 100%;
    max-width: 700px;
    padding: 0.5em;
    box-sizing: border-box;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.navbar {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    overflow: hidden;
}

.navbar-item {
    padding: 0.7em;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: black;
    text-decoration: none;
}

.navbar-item-active,
.navbar-item:hover {
    background-color: #ececec;
    box-shadow: rgba(0, 0, 0, 0.25) 0 2px 4px 0 inset;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.generic-button {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 1em;
    text-align: center;
    text-decoration: none;
    color: white;
    font-weight: bolder;
    text-transform: uppercase;
    border-radius: 0.8em;
    background-color: dodgerblue;
    cursor: pointer;
    border: none;
}

.generic-button-icon {
    margin-left: 0.4em;
}

.generic-button:hover {
    background-color: #44a1ff;
}

.generic-form {
    display: inherit;
    flex-direction: inherit;
    width: 100%;
    align-items: center;
    flex: 1;
    overflow: hidden;
}

.generic-checkbox {
    height: 1.5em;
    width: 1.5em;
    background-color: #eee;
    cursor: pointer;
}

input:checked~.generic-checkbox {
    background-color: dodgerblue;
}

.generic-checkbox:after {
    content: "";
    position: absolute;
    display: none;
}

input:checked~.generic-checkbox:after {
    display: block;
}

.generic-checkbox:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.floating-component {
    border-radius: 0.8em;
    border: 1px solid #dfdfdf;
    background-color: #ffffff;
}