body {
    font-family: 'Roboto', sans-serif;
    font-size: 14pt;
    margin: 0;
    width: 100%;
    height: 100%;
}

main {
    display: none;
}

form {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    align-items: flex-start;
}

.full-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.badge {
    display: inline-flex;
    background-color: red;
    color: white;
    border-radius: 50%;
    min-width: 20px;
    min-height: 20px;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

hr {
    margin: 1rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: .25;
    width:  100%;
    height: 2px;
}

.table {
    border-collapse: separate;
    border-spacing: 10px;
    width:100%;
}

th {
    text-align: left;
    padding-bottom: 10px;
}

tr {
    position: relative;
}

tr::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #ddd; /* Adjust the color as needed */
}

thead tr::after {
    height: 2px; /* Increase the height for a bold line */
    background-color: #000; /* Change the color to make it bold and adjust as needed */
}

::-webkit-scrollbar {
    background-color: #32312e;
    color: #a39e95;
}

::-webkit-scrollbar-corner {
    background-color: #2a2927;
}

::-webkit-scrollbar-thumb:active {
    background-color: #565551;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #64625d;
}

::-webkit-scrollbar-thumb {
    background-color: #53514e;
}

.form-container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

.form-container * {
    box-sizing: border-box;
}

/*
.flex-outer {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.flex-outer li {
    display: contents;
}

.flex-outer li label {
    grid-column: 1;
    text-align: right;
}

.flex-outer li label {
    grid-column: 1;
    text-align: right;
}

.flex-outer li > *:not(label) {
    grid-column: 2;
}
 */

.flex-outer,
.flex-inner {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    list-style-type: none;
    padding: 0;
}

.flex-outer {
    /*max-width: 800px;*/
    /*margin: 0 auto;*/
}

.flex-outer li,
.flex-inner {
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    /*align-items: center;*/
}

.flex-inner {
    /*padding: 0 8px;*/
    /*justify-content: space-between;*/
}

.flex-outer > li:not(:last-child) {
    margin-bottom: 5px;
}

.flex-outer li label,
.flex-outer li p {
    padding: 8px;
    font-weight: 300;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.flex-outer > li > label,
.flex-outer li p {
    flex: 1 0 120px;
    max-width: 220px;
}

.flex-outer > li > label + *,
.flex-inner {
    flex: 1 0 220px;
}

.flex-outer li p {
    margin: 0;
}

.flex-inner li {
    width: 100px;
}
