/*
 Theme Name:     Divi Child
 Theme URI:      http://www.elegantthemes.com
 Description:    PSOM - Divi Child Theme
 Author:         Thaler Software GmbH
 Author URI:     https://www.thaler-software.eu
 Template:       Divi
 Version:        1.0.0
*/

div.dt-subtable-wrapper {
    /* Füge hier die allgemeinen Stile für das übergeordnete div hinzu */
    overflow-x: auto;
}

/* @media-Query für kleine Bildschirme */
@media (max-width: 372px) {
    div.dt-subtable-wrapper {
        width: 320px; /* Beispielbreite für kleine Bildschirme */
    }
}

/* @media-Query für kleine Bildschirme */
@media (min-width: 372px) and (max-width: 576px) {
    div.dt-subtable-wrapper {
        width: 400px; /* Beispielbreite für kleine Bildschirme */
    }
}

/* @media-Query für mittlere Bildschirme */
@media (min-width: 577px) and (max-width: 992px) {
    div.dt-subtable-wrapper {
        width: 450px; /* Beispielbreite für mittlere Bildschirme */
    }
}

/* @media-Query für große Bildschirme */
@media (min-width: 993px) {
    div.dt-subtable-wrapper {
        width: 750px; /* Beispielbreite für große Bildschirme */
    }
}

/* @media-Query für große Bildschirme */
@media (min-width: 1200px) {
    div.dt-subtable-wrapper {
        width: 100%; /* Beispielbreite für große Bildschirme */
    }
}