
body {
    background-color: rgb(223, 218, 218);
    color: var(--textColor);
    overflow-x: hidden;
}

.white {
    color:white;
}

.pointer {
    cursor: pointer;
}
.bold {
    font-weight: bold;
}
.dispNone {
    display: none;
}

/* - With & Height */
.width-100 {
    width: 100%;
}
.height-100 {
    height: 100%;
}

/* - Display Options */
.Flex {
    display: flex;
}
.flexStart {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.flexStartPar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.flexStartPar-table {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.flexCenter {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flexEnd {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.spaceBetween {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* - Align text */
.alignRight {
    text-align: right;
}
.alignLeft {
    text-align: left;
}
.alignCenter {
    text-align: center;
}

/* ### Padding  ### */
/* Paddings */
.padding4 {
    padding: 4px
}
.padding8 {
    padding: 8px
}
.padding16 {
    padding: 16px
}
.padding32 {
    padding: 32px
}

/* ### Margins  ### */
/* - Margin top */
.top4 {
    margin-top: 4px;
}
.top8 {
    margin-top: 8px;
}
.top16 {
    margin-top: 16px;
}
.top32 {
    margin-top: 32px;
}
.top64 {
    margin-top: 64px;
}

/* - Margin bottom */
.bottom4 {
    margin-bottom: 4px;
}
.bottom8 {
    margin-bottom: 8px;
}
.bottom16 {
    margin-bottom: 16px;
}
.bottom32 {
    margin-bottom: 32px;
}
.bottom64 {
    margin-bottom: 64px;
}

/* - Margin right */
.right4 {
    margin-right: 4px;
}
.right8 {
    margin-right: 8px;
}
.right16 {
    margin-right: 16px;
}
.right32 {
    margin-right: 32px;
}
.right64 {
    margin-right: 64px;
}

/* - Margin left */
.left4 {
    margin-left: 4px;
}
.left8 {
    margin-left: 8px;
}
.left16 {
    margin-left: 16px;
}
.left32 {
    margin-left: 32px;
}
.left64 {
    margin-left: 64px;
}


.font12 {
    font-size: 12px;
}
.font14 {
    font-size: 14px;
}
.font16 {
    font-size: 16px;
}
.font18 {
    font-size: 18px;
}
.font20 {
    font-size: 20px;
}
.font22 {
    font-size: 22px;
}
.font24 {
    font-size: 24px;
}
.font28 {
    font-size: 28px;
}
.font32 {
    font-size: 32px;
}
.font36 {
    font-size: 36px;
}

.optionsAboveStyle {
    margin-bottom: 32px;
    margin-right: 16px;
}

.margin3216 {
    margin-bottom: 32px;
    margin-top: 16px;
}

.widthLogo {
    max-width: 140px;
}

.navbarStyle {
    background: rgb(250 82 82 / 64%);
    padding: 16px 24px;
    font-size: 24px;
    font-weight: bold;
    color: white;
}


.tableDivStyle {
    max-height: 350px;
    overflow-y: scroll;
}

@media only screen and (max-width: 600px) {
    .optionsAboveStyle {
        margin-bottom: 16px;
        margin-right: 0;
    }
    .flexStartPar {
        display: grid;
        justify-content: flex-start;
        align-items: center;
    }
    .flexStartPar-table {
        display: block;
        justify-content: flex-start;
        align-items: center;
    }
    .margin3216 {
        margin-bottom: 16px;
        margin-top: 16px;
    }
    .navbarStyle {
        padding: 16px 8px;
        font-size: 16px;
        font-weight: bold;
        color: white;
    }
    .widthLogo {
        max-width: 120px;
    }
}