 table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }
        
th, td {
            padding: 2px;
            text-align: left;
        }
        
        tbody tr {
            margin-bottom: 5px;
        }
        
        @media (max-width: 600px) {
            table, tbody, th, td, tr {
                display: block;
            }
            
            thead {
                display: none !important;
            }
            
            tr {
                margin-bottom: 5px;
                border-bottom: 1px solid #ccc;
                padding-bottom: 5px;
            }
            
            td {
                display: flex;
                justify-content: space-between;
                padding: 2px 0;
            }
            
            td::before {
                content: attr(data-label);
                font-weight: bold;
                padding-right: 3px;
            }
        }
        
        /* Klassen zum gezielten Ausblenden von Spalten auf mittleren Bildschirmen */
        @media (max-width: 900px) {
            .hide-on-medium {
                display: none !important;
            }
        }