table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  background-color: white;
}

th, td {
  padding: 0.5rem;
  border: 2px solid #fff5e9;
  text-align: left;
}

.nav ul li a {
    display: block;
    padding: 0.8rem 1rem;
}

button, input[type="submit"] {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.75rem;
}

@media screen and (max-width: 768px) {
    table, thead, tbody, th, td, tr {
        display: block;
        width: 107%;
        font-size: 1rem;
        background-color: #fff5e9;
        margin-left: -3.5%;
    }

    thead {
        display: none; /* Kopfzeilen verbergen */
    }

    tr {
        margin-bottom: 2rem;
        border-bottom: 2px solid #eee;
    }

    td {
        display: flex;
        justify-content: space-between;
        padding: 0.25rem 0.25rem 0.25rem 0;
    }

    td::before {
        content: attr(data-label);
        font-weight: bold;
        flex: 1;
    }

    button, input[type="submit"] {
    padding: 0.8rem 0.8rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    }
}