* {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
}

table {
    border-collapse: collapse;
}

.head th {
    padding: 5px;
}

th,
tr,
td {
    border-left: 1px solid #f5f5f6;
    border-right: 1px solid #f5f5f6;
}

.table-custom .head {
    font-weight: 700;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 58%, rgba(208, 211, 215, 1) 100%);
}

.table-status .head {
    font-weight: 700;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 58%, rgba(208, 211, 215, 1) 100%);
}

.table-status {
    border: 1px solid black;
    padding: 10px;
    width: fit-content;
    margin: 0 auto;
}

.body {
    width: 100%;
}

.body img {
    position: absolute;
    left: 10px;
    margin: auto 0;
}

.table-status tbody tr:nth-child(even) {
    background-color: rgba(208, 211, 215, 1);
    color: grey;
}

.table-status {
    min-height: 250px;
    justify-content: start !important;
}

.table-custom,
.table-status {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: auto;
}

#render {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.header {
    display: flex;
    gap: 10px;
    font-size: large;
    color: #223a91;
    align-items: center;
}

h1,
h2,
h3,
h4 {
    margin: 0;
}

h4 {
    text-align: center;
}

.sep {
    height: 40px;
    border: 1px solid #223a91;
}

@media only screen and (max-width: 600px) {
    .body img {
        display: none;
    }

    .table-custom {
        width: 100%;
    }

    .table-status {
        width: 95%;
    }

    .header img {
        height: 30px;
    }
}

