html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.status-table {
    width: 100%;
}

.status-table-body > tr, .status-table-body > tr > td, .status-table-body > tr > th {
    border: solid black 1px;
}

.status-table-body > tr > td, .status-table-body > tr > th {
    padding-left: 1rem;
    padding-right: 1rem;
}

.user-table {
    width: 100%;
}

.user-table-body > tr > td, .user-table-body > tr > th {
    padding-left: 1rem;
    padding-right: 1rem;
}

.status-table-body ol, .status-table-body ul {
    margin: 0;
    padding-left: 1rem;
}

.status-table-body li {
    padding-left: 1rem;
}

.login {
    width: 400px;
}

.login-body {
    width: 200px;
}

.form-v-centered {
    position: absolute;
    top: calc(50% - 75px);
    height: 150px;
}

.form-w400 {
    width: 400px;
}

.form-body-w200 {
    width: 200px;
}

.login-body, .login-body > tr, .login-body > tr > td, .login-body > tr > th {
    border: 0px;
}

.task-ended {
    width: 15px;
    height: 15px;
    background-color: rgb(124, 184, 36);
    clip-path: polygon(99% 12%, 70% 88%, 16% 58%, 28% 38%, 55% 54%, 78% 1%);
}

.task-in-progress {
    width: 15px;
    height: 15px;
    background-color: red;
    clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
}

#task-progress-bar {
    width: 300px;
}

.m-button:hover {
    transition: background-color 1s;
    background-color: green;
}

.content {
    margin-top: 20px;
    flex: 1 0 auto;
}

.separator {
    background-color: black;
    position: relative;
    top: 8px;
    left: 0;
    width: 2px;
    height: 23px;
    display: inline-block;
}

footer {
    position: relative;
    bottom: 0;
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding-top: 10px;
}

.vertical-separator {
    background-color: #e9ecef;
    position: relative;
    left: 5%;
    width: 90%;
    height: 1px;
    top: 0;
}

.pagination-container {
    margin: 10px 0;
}

.filters-button {
    display:flex;
}

.filters-container {
    display: flex;
}

.filters-table {
    width: 200px;
}

.filters-table td {
    min-width: 40px;
}