html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 15px;
}

table {
    width: 100%;
    height: 100%;
    border-collapse: collapse;
    border: 1px;
}

table, th, td {
    border: 1px solid black; /* Přidá rámeček kolem tabulky a buňek */
}

table td:first-child, table th:first-child {
    max-width: 5vw;
    text-align: left;
}

td, th {
    text-align: center;
}

/* Střídavé barvy pro řádky, :nth-child(even) vybere každý druhý řádek */
tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Stylování pro hlavičku tabulky, pokud je třeba */
th {
    background-color: #4CAF50;
    color: white;
}

select {
    appearance: none;
    background-color: transparent;
    border: none;
    padding: 0 1em 0 0;
    margin: 0;
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    cursor: inherit;
    line-height: inherit;
    text-align: center;
}

select::-ms-expand {
    display: none;
}

select {
    outline: none;
}

input{
    text-align: center;
    max-width: 5vw !important;
}
 
@media (max-width: 450px) {
    table td:first-child, table th:first-child {
        max-width: 15vw;
    }

    th, td {
        max-width: 10vw;
    }
  }