/* Basis-Styling für die Tabelle */
.table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    margin: 20px 0;
}

/* Tabellenkopf */
.table thead {
    background-color: #4a90e2; /* schöner Blauton */
    color: white;
    text-align: left;
}

.table thead th {
    padding: 10px 15px;
}

/* Tabellenkörper */
.table tbody td {
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
}

/* Zebra-Streifen */
.table-striped tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Hover-Effekt */
.table tbody tr:hover {
    background-color: #e8f0fe;
}

/* Optional: kleine Rundungen */
.table {
    border-radius: 6px;
    overflow: hidden;
}

/* Responsive */
@media screen and (max-width: 600px) {
    .table thead {
        display: none;
    }
    .table tbody tr {
        display: block;
        margin-bottom: 15px;
        border-bottom: 2px solid #ddd;
    }
    .table tbody td {
        display: block;
        text-align: right;
        padding-left: 50%;
        position: relative;
    }
    .table tbody td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: calc(50% - 30px);
        text-align: left;
        font-weight: bold;
    }
}
