#scrollBody {
    overflow-y: scroll;
    /* this setting is for making scroll lane ALWAYS VISIBLE */
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;

    scrollbar-width: thin;
    /* Change the width value as needed */
    scrollbar-color: #3ac0ca4d #000000ff;
    /* Change the colors as needed */
}

html,
body {
    width: 100%;
    margin: 0;
    height: 100%;
    overflow-y: hidden;
}

body {
    /* font-family: 'Poppins', sans-serif; */
    /* background-color: #333; */
    display: flex;
    flex-direction: column;
    width: 100%;

    /* ---------------------------- */
    /* styles from before 'dango' */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #d0d0d0;
    text-align: left;
    /* ---------------------------- */
}

/* global default image sizing for .main-content */
.main-content img.wide{
    width: 100%;
}

/* some styles for some kind of form */
.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-group {
    margin-bottom: 1rem;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.clicked {
    background-color: #005bff;
    border-color: #005bff;
}

.btn {
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;


    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;


}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}


.btn-yellow {
    color: #212529;
    background-color: #ffc107;
}

.btn-red {
    color: #fff;
    background-color: #dc3545;
}



.form-group input {
    margin: 0px;
    box-sizing: border-box;
    width: 100%;
    max-width: 20rem;
}

h1 {
    font-weight: 500;
    font-size: 3rem;
}

h2 {
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}

/* ------------------------------------------------------ */



/* a, a:visited { color: #4272ff; } */
#site-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* Ensures the content is properly aligned */
    width: 100%;
    height: 100%;

}

main {
    flex: 1;
    /* This ensures that the main content can expand to fill available space */
    display: flex;
    flex-direction: column;
    /* Ensures the content is properly aligned */
    width: 100%;
    /* align-items: center; */
}



/* ------------------------------------------------- */
/* pretty links? */
a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: #0056b3;
    text-decoration: none;
}

a:not([href]):not([class]) {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

/* ------------------------------------------------- */


/* class to reliably make an element's text unselectable*/
.unselectable,
.prevent-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}





/* content panel */
/* ---------------------------- */
.content-panel {
    /* width: 100%; */
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-top: 1em;
    margin-left: 1em;
    margin-right: 1em;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border-width: 2px;
    border-style: solid;
    transition: 0.3s ease;
}

.content-panel-child {
    width: 100%;
    box-sizing: border-box;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}


.main-content {
    width: 100%;
    max-width: 1100px;
    padding: 1rem;
    margin: 0.5rem;
    align-self: center;
    border-radius: 4px;
    box-sizing: border-box;
    height: 100%;
    overflow-x: hidden;
}