/* Allgemeine Stile */



/* Tabelle mit Klasse spec-table */
.spec-table {
    padding: 20px;
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.spec-table th, 
.spec-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.spec-table th {
    background-color: #f5f5f5;
    font-weight: bold;
    text-align: center;
}

.spec-table td:last-child {
    text-align: right;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Tablet-Anpassungen */
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 20px;
    }

    .spec-table th, 
    .spec-table td {
        font-size: 14px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    /* Handy-Anpassungen */
    .container {
        padding: 10px;
    }

    h1 {
        font-size: 18px;
    }

    .spec-table {
        width: 100%;
        min-width: 300px; /* Mindestbreite, um die Tabelle nicht zu schmal werden zu lassen */
    }

    .spec-table th, 
    .spec-table td {
        font-size: 12px;
        padding: 8px;
    }

    /* Sicherstellen, dass die Tabelle nebeneinander bleibt */
    .spec-table th, 
    .spec-table td {
        display: table-cell; /* Beibehalten der Tabellenstruktur */
    }

    .spec-table td:last-child {
        text-align: right;
    }
}