.descriptionTable {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    max-width: 900px;
    margin: 1.5rem 0;
    border: 1px solid;
    border-radius: 8px;
    overflow: hidden;
}

    .descriptionTable th,
    .descriptionTable td {
        padding: 0.75rem 1rem;
        vertical-align: top;
        text-align: left;
        border-bottom: 1px solid;
        line-height: 1.5;
    }

    /* Tabellenkopf */
    .descriptionTable th {
        font-weight: 600;
        border-bottom: 2px solid;
    }

        /* Erste Spalte */
        .descriptionTable td:first-child,
        .descriptionTable th:first-child {
            width: 25%;
            white-space: nowrap;
        }

    /* Letzte Zeile ohne Unterstrich */
    .descriptionTable tr:last-child td {
        border-bottom: none;
    }

    /* Abgerundete Ecken */
    .descriptionTable tr:first-child th:first-child {
        border-top-left-radius: 8px;
    }

    .descriptionTable tr:first-child th:last-child {
        border-top-right-radius: 8px;
    }

    .descriptionTable tr:last-child td:first-child {
        border-bottom-left-radius: 8px;
    }

    .descriptionTable tr:last-child td:last-child {
        border-bottom-right-radius: 8px;
    }

/* Mobile Optimierung */
@media (max-width: 600px) {
    .descriptionTable th,
    .descriptionTable td {
        padding: 0.6rem 0.75rem;
    }

        .descriptionTable td:first-child,
        .descriptionTable th:first-child {
            white-space: normal;
        }
}
