html, body {
    display: flex;
    height: 100%;
    flex-direction: column;
}

.router-outlet {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100% - 52px);
}

.top-menu {
    width: 100%;
    height: 52px;
    background-color: transparent;
}

.layout-title {
    height: 100%;
    flex-grow: 1;
    font-size: x-large;
    font-weight: bolder;
    padding: 0 20px;
    align-items: center;
    display: flex;
}

.logout-button {
    text-decoration: none;
    text-transform: none;
    background-color: transparent;
    border: none;
    float: right;
    cursor: pointer;
    width: 52px;
    height: 52px;
    padding-top: 15px;
    display: flex;
    justify-content: center;
}

.logout-icon {
    color: red;
    font-size: 42px !important;
}
.logout-icon:hover {
    color: #b40000;
}

.logout-button a, .logout-button a:hover {
    display: flex;
    color: white;
}

.body-content {
    height: auto;
    flex: 1;
    background: url("../images/background.jpg");
}

.image-padding {
    padding: 20px;
}
.padding-top-30 {
    padding-top: 30px;
}
.padding-20 {
    padding: 20px;
}
.es-divider {
    border: 1px inset;
    border-top-color: gray;
    position: absolute;
    left: 15px;
    right: 15px;
    opacity: 0.3;
}

.no-style-link, a:hover {
    text-decoration: none;
    color: #6D6D6D;
}

.info {
    display: flex;
    font-size: 12px;
    margin-top: 10px;
    height: 20px;
    justify-content: space-between;
}

.logout-page {
    display: flex;
    flex-direction: column;
    align-items: center;
}

