body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    display: grid;
    min-height: 100vh;
    grid-template-rows: auto 1fr auto;
}
* {
    box-sizing: border-box;
}
.home_header_container {
    padding: 8px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
    height: 100%;
}
.home_header_block {
    background-color: #fbead0;
    padding: 8px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}
.table_header {
    text-align: center;
    font-size: 1.5rem;
}
td {
    font-size: 12px;
}
.table {
    word-break: break-word;
}
hr {
    width: 100%;
}
tr th:first-child {
    width: 50px;
}
.inner_menu {
    display: flex;
    flex-direction: column;
    width: 30%;
}
.inner_menu_item {
    border-bottom: 1px solid #dbdbdb;
    padding: 8px;
}
.inner_menu_item a {
    color: #465967 !important;
}
.inner_menu_item:hover {
    background: rgba(255, 255, 255, 0.50);
}
.inner_menu_item_selected {
    background: rgba(255, 255, 255, 0.50);
}