html {
    box-sizing: border-box;
    margin: 10px;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.125rem;
    line-height: 1.5;
}

.operators-table {
    overflow-x: auto;
    width: 100%;
}

table,
th,
td,
tr,
caption {
    border: 1px solid;
    border-collapse: collapse;
    padding: 1rem;

}

table {
    overflow-x: scroll;
    margin-inline: auto;
    width: 100%;
    min-width: 500px
}

caption {
    background-color: rgb(232, 215, 146);

    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

th {
    background-color: antiquewhite;
}

td {
    background-color: rgb(175, 225, 175, 0.5);
}

tr:nth-of-type(2n) {
    background-color: hsl(0 0% 0% /0.1);
}
