body {
    margin: 0 auto;
    margin-top: 24px;
    margin-bottom: 24px;

    width: min(1000px, 90vw);
    
    font-family: Arial, Helvetica, sans-serif;
}

.title {
    display: flex;
    align-items: center;
    justify-content: center;
    
    & * {
        margin: 4px;
    }

    & img {
        max-height: 45px;
        aspect-ratio: 1.56979405034;
    }
}

.table-container {
    overflow-x: auto;
}

table {
    border-spacing: 4px;
}

table td {
    padding: 8px;
}

thead td {
    color: white;
    background-color: #005aa5;
}

tbody {

    & tr:nth-child(odd) td {
        background-color: #f2f2f2;
    }

    & td {
        background-color: rgb(219, 219, 219);
    }

    & ul {
        padding-left: 20px;
    }
}