/* Misc */
* {
    font-family: verdana;
    box-sizing: border-box;
}

body {
    background-color: #f8f8f8;
}

.page-wrapper {
    width: 100%;
    height: 100svh;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.display-none {
    display: none;
}

table {
    border-collapse: collapse;
}

.scroller-div {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 1px;
    flex-grow: 1;
}

/* Flexbox */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-grow {
    flex-grow: 1;
}

.flex-align-center {
    align-items: center;
}

.flex-align-start {
    align-items: flex-start;
}

.flex-wrap {
    flex-wrap: wrap;
}