*{
    margin: 0;
    padding: 0;
}

/* Vycentrování tabulky pro přehlednost */

body { 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

table, td, th {
    border: 0px solid white;
    border-collapse: collapse;
}

table {
    width: 100%;
    table-layout: fixed;
    border-spacing: 10px;
    caption-side: top;
    empty-cells: hide;

    /* dodatečné styly */
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    text-align: left;
}
  
td { padding: 0.5rem; }