html, body {
    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;
}

body {
    background: #eee;
}

main {
    width: 100%;
    height: calc(99% - 3.7rem);

    position: absolute;
    bottom: 0;

    overflow-y: scroll;

    scrollbar-gutter: stable;
    scrollbar-width: none;

    z-index: 0;
}


.hideScroll {
    scrollbar-gutter: stable;
    scrollbar-width: none;
}

.linkBehavior:hover {
    color: blue;
    cursor: pointer;
}


.ButtonDiv {
    width: 100%;
    padding: 15px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.confirmButton {
    width: 100%;
    padding: 12px;
    font-size: 1.05rem;

    background: green;
    border: 1px solid silver;
    border-radius: 9px;
    color: silver;

    cursor: pointer;
}

.confirmButton:hover {
    border: 1px solid black;
    border-radius: 9px;
    color: black;

    cursor: pointer;
}

.cancelButton {
    width: 100%;
    padding: 12px;
    font-size: 1.05rem;

    background: crimson;
    border: 1px solid silver;
    border-radius: 9px;
    color: silver;

    cursor: pointer;
}

.cancelButton:hover {
    border: 1px solid black;
    border-radius: 9px;
    color: black;

    cursor: pointer;
}