.inputs {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.tooltip-container:hover .tip {
    display: block;
}

.tip {
    position: absolute;
    display: none;
}

table {
    border: 2px solid gray;
}

th,
td {
    border: 1px solid lightgray;
    padding: 8px 10px;
    text-align: center;
}

tbody > tr:nth-of-type(even) {
    background-color: lightblue;
}

tbody > tr:nth-of-type(odd) {
    background-color: lightgray;
}

.tables {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

tbody > tr:nth-of-type(even).stop-at {
    background-color: rgb(0 128 0) !important;
}

tbody > tr:nth-of-type(odd).stop-at {
    background-color: rgb(1, 163, 1) !important;
}