body {
    position: absolute;
    min-height: 100vh;
    width: 100%;

    overflow-x: hidden;
    overflow-y: auto;

    display: block;
    align-items: center;
    justify-items: center;

}

.menuBar {
    height: 35px;
    color: #fff;
    background-color: #009688;
    display: flex;
    align-items: center;
    justify-content: stretch;
}

.menuBar > .container > span {
    min-width: 40px;
}

.menuBtn:hover {
    background-color: rgba(255, 255, 255, 0.46);
}

.avatarPreview {
    display: block;
    min-width: 36px;
    max-width: 36px;
    min-height: 36px;
    max-height: 36px;
    cursor: pointer;

    background-color: #cccccc;

    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.leadingRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nameButtons > .btn {
    font-size: 18px;
}
.nameRow, .commentRow {
    display: flex;
    align-items: center;
    justify-content: stretch;
}

.headBase {
    height: 36px;
    min-width: 36px;
    color: #0a58ca;

    font-size: 36px;

    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: baseline;

    overflow: hidden;
    position: relative;
}

.nameBase {
    padding-left: 10px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.commentContent {
    display: block;
    margin-left: 10px;
    padding: 5px 10px;
    width: calc(100% - 10px);
    border: 1px solid #58151c;
    border-radius: 10px;
    box-shadow: 0 -5px 3px -3px black, 0 5px 3px -3px black;

}

.commentContent > .content {
    display: block;
    font-size: 14px;
}

.commentContent > .button {
    display: block;
    font-size: 10px;
}

.commentContent > .button > button {
    font-size: 12px;
}

.commentContent > .button > * {
    font-size: 10px;
}

.commentRow:not(:first-of-type) {
    padding-top: 15px;
}

.form-check .form-check-input {
    float: none !important;
}

.pageContent {
    height: 579px;
    overflow-x: hidden;
    overflow-y: auto;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #9be1db #ededed;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-track {
    background: #ededed;
}

*::-webkit-scrollbar-thumb {
    background-color: #9be1db;
    border-radius: 8px;
    border: 1px outset #fff;
}
