body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
hr {
    border-top: 1px dotted #f8f8f8;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 0px;
    padding-bottom: 0px;
}

/*--------------------------------
 * button
---------------------------------*/

.button.is-primary {
    background-color: #75b34d !important;
}
.button.is-primary:hover {
    background-color: #5a8f3e !important;
}

/*--------------------------------
 * progress
---------------------------------*/

.progress::-webkit-progress-bar {
    background-color: #f3f3f3;
}
.progress::-webkit-progress-value {
    background-color: dodgerblue;
}
.progress::-moz-progress-bar {
    background-color: dodgerblue;
}

/*--------------------------------
 * navbar
---------------------------------*/

.navbar-public {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}
.navbar-default {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}
.navbar-default-bg {
    background-color: #fff;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
}

.navbar-item-logo {
    width: 240px;
    min-height: 40px;
}

.navbar-status {
    border-radius: 10px;
    border-width: 2px;
    background-color: #fff;
    padding-top: 10px;
    padding-left: 12px; 
    padding-right: 16px;
    padding-bottom: 5px;
    border: 2px solid #eff0f3; 
}
.navbar-status-icon {
    width: 30px;
    height: 30px;
    object-position: center;
    border-radius: 100%;
}

/*--------------------------------
 * sidebar
---------------------------------*/

.sidebar-icon {
    width: 28px;
    height: 28px;
}

.menu-label-container {
    display: flex;
    align-items: center;
}

.icon-menu-label {
    margin-left: 5px;
    color: #7a7a7a;
    font-weight: bold;
}

/*--------------------------------
 * content
---------------------------------*/

/* global */

.flex-container {
    display: flex;
    align-items: center;
}

.is-flex {
    display: flex;
}
.is-align-items-center {
    align-items: center;
}

.content-icon {
    width: 35px;
    height: 35px;
}

.main-title {
    color: #505050;
}

.title-container {
    display: flex;
    align-items: center;
}

.session-inner-content {
    overflow: hidden;
    border-radius: 6px;
    background-color: #eff0f3;
    box-shadow: inset 1px 3px 5px rgba(0, 0, 0, 0.1);
    margin: 0px;
    padding: 0px;
}

.content-align-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* search */

.search-container {
    display: flex;
    align-items: center;
}
.search-input {
    margin-left: 5px;
    border: none;
    padding: 10px;
    font-weight: bold;
    font-size: large;
    width: 80%;
}

/* admin */

.accept-request-true {
    color:dodgerblue;
    font-weight: bold;
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: small;
}
.accept-request-false {
    color: #dc6b8a;
    font-weight: bold;
    padding-left: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: small;
}

/*--------------------------------
 * footer
---------------------------------*/

.footer-public {
    border-top: 3px solid #f8f8f8; 
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: #000;
    height: 100px;
    min-height: 100px;
}
.footer {
    margin-top: auto;
    display: flex;
    border-top: 3px solid #e7f7df; 
    justify-content: center;
    align-items: center;
    height: 200px;
}
.footer a {
    color: #746f57;
}
.footer a:hover {
    color: #989272;
}