
    /*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;
    }

    /* Table links should inherit cell text color */
    .tabela td a {
        color: inherit;
    }

    /* KomĂłrki z klasÄ… "g" */
    .tabela td.g,
    .tabela td.godzina {
        background-color: var(--global-palette1);
        color: #fff;
    }

    /* Time cells are styled only by dedicated classes (.g / .godzina). */


    /* 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; 
        }
    }

/* All duties panel table */
.planle-all-duties-table {
    border-collapse: collapse;
    table-layout: fixed;
}

.planle-all-duties-table th,
.planle-all-duties-table td {
    border: 1px solid #d8dfeb;
    padding: 6px 8px;
    vertical-align: top;
    line-height: 1.35;
    font-size: 13px;
}

.planle-all-duties-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #eef4ff;
}

.planle-all-duties-table .planle-duty-col-no {
    width: 46px;
    text-align: center;
}

.planle-all-duties-table .godzina {
    width: 128px;
    white-space: nowrap;
    font-weight: 600;
}

.planle-all-duties-table .planle-duty-zone-row td {
    background: #f7faff;
    border-top: 2px solid #cfd9ea;
    font-weight: 600;
}

.planle-all-duties-table .planle-duty-day-cell {
    word-break: break-word;
}
