.search-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.search-box input[type="text"] {
    margin: 0 !important;
}

table {
    font-size: 0.9em;
}

table tr td:nth-child(4) {
    text-wrap: nowrap;
}

table th {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    border-width: 1px;
    text-align: left;
}

table.disabled {
    display: none;
    visibility: hidden;
}

table.active {
    display: table;
    visibility: visible;
}

p.invalid-type {
    text-align: center;
    margin-top: 32px;
    color: #D52B1E;
    font-weight: 700;
    font-size: 1.2em;
}

td.no-results {
    text-align: center;
    color: #D52B1E;
    font-weight: 700;
    font-size: 1.2em;
    background-color: #f9f9f9;
}


@media (max-width: 768px) {
    .search-box {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 24px;
    }

    .search-box input[type="text"] {
        width: 100% !important;
    }

    table th {
        -webkit-transform: none;
        transform: none;
        -webkit-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
        text-align: center;
    }
}