
    /*style planu lekcji*/
    .col, .col2, .col3 { display: none; }
    .report { text-align: right; }
    .update { text-align: right; }
    .col, .col2, .col3 { display: block; }
    
    .tabela { 
        width: 100%; 
        overflow-x: auto; /* umożliwia przewijanie w poziomie */
        -webkit-overflow-scrolling: touch; /* dla lepszej responsywności na urządzeniach mobilnych */
    }

    table { 
        width: 100%; 
        border-collapse: collapse; 
    }

    th, td { 
        white-space: nowrap; /* zapobiega zawijaniu tekstu */
    }

    .tabela th, .tabela tr:first-child th { 
        background-color: var(--global-palette2); 
        color: #fff; 
    }

    /* Styl dla pierwszego wiersza */
    .tabela tr:first-child td {
        background-color: var(--global-palette2);
        color: #fff;
    }

    /* Styl dla pierwszej kolumny */
    .tabela td:first-child {
        background-color: var(--global-palette2);
        color: #fff;
    }

    /* Usuwanie tła z pustych komórek */
    .tabela td:empty, .tabela td:empty[style] {
        background-color: transparent !important;
        color: inherit !important;
    }

    /* Linki w tabeli - kolor */
    .tabela td a {
        color: var(--global-palette1);
    }

    /* Komórki z klasą "g" */
    .tabela td.g {
        background-color: var(--global-palette1);
        color: #fff;
    }

    /* Dodatkowe style */
    .col { 
        float: left; 
        width: 100%; 
        background: var(--global-palette2); 
        border: 3px solid gray; 
    }

    .col2 { 
        float: right; 
        width: 100%; 
        text-align: center; 
	overflow-x: auto;
    }

    .col3 { 
        float: none; 
        width: 100%; 
    }

    .menu2 { 
        min-width: 300px; 
    }

    .cale { 
        display: flex; 
        flex-wrap: nowrap; 
        align-items: flex-start; 
        flex-direction: row; /* Normalne ustawienie w poziomie */
    }

    .toggle-header { 
        color: #fff; 
        cursor: pointer; 
    margin: 15px 0 !important; /* Nadpisanie domyślnego margin */
    padding: 0 !important; /* Nadpisanie domyślnego padding */
    }

.toggle-list {
    opacity: 0; /* Ukrywa elementy */
    padding: 0 !important;
    max-height: 0; /* Ukrywa menu, ustawiamy na 0 */
    overflow: hidden; /* Ukrywa zawartość poza max-height */
    padding: 0; /* Usuwa padding */
    position: relative; /* Ustalamy element w miejscu, nie zajmuje przestrzeni w układzie */
    transition: max-height 0.5s ease-in-out, opacity 5s ease-in-out; /* Animacja */
}

.toggle-list.show {
    opacity: 1; /* Pokazuje elementy */
    visibility: visible; /* Pokazuje elementy */
    max-height: 10000px; /* Ustawiamy max-height na dużą wartość, aby rozwinąć */
    padding: 0; /* Może pozostać brak paddingu */
    margin: 0; /* Usuwamy marginesy */
    position: relative; /* Przywraca normalną pozycję */
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out; /* Animacja */
}

    .content-container.site-container { 
        width: 100%; 
        max-width: 100%; 
    }
ul {
    list-style-type: none !important;
    margin-right: 15px !important;
    margin-bottom: 0 !important; /* Nadpisanie domyślnego margin */
}
    a {
        text-decoration: none;
    }

    .col a {
        color: #fff;
        text-decoration: none;
    }

    .col a:focus { 
        color: #fff !important; 
    }

    .col a:hover { 
        color: #669cd7; 
    }


    /* Usuwanie kropek przed listą */
    ul.toggle-list {
        list-style-type: none;
        padding-left: 0;
	margin-right: 15px;
	margin-top: 0 !important;
    }

    ul.toggle-list li {
        padding-left: 0;
    }


    @media screen and (max-width: 780px) {
        /* Ustawienia dla mniejszych ekranów */
        .tabela { 
            width: 100%;
            overflow-x: auto; /* zapewnia przewijanie poziome tabeli */
        }

        .menu2 { 
            width: 100%; 
        }

        .report, .update { 
            text-align: center; 
        }

        .cale {
            flex-direction: column; /* Ustawienie w kolumnie na małych ekranach */
            align-items: center; 
        }
    }
