.wp-block-table {
    width: 100%;
    overflow-x: auto; /* Scroll tylko jeśli potrzeba */
    border-radius: 16px;
}

.wp-block-table table {
    display: flex;
    flex-direction: column;
    min-width: 781px; /* Minimalna szerokość TYLKO na tabeli */
    width: 100%;
    border: 0;
    background-color: var(--wp--preset--color--custom-bg-white);
    border-collapse: separate!important;
    flex-wrap: wrap;
}

.wp-block-table thead {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--wp--preset--color--custom-bg-secondary);
    border-bottom: 1px solid var(--wp--preset--color--custom-stroke-default);
    flex-wrap: wrap;
}

.wp-block-table tbody {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.wp-block-table tr {
    display: flex;
    width: 100%;
    border-bottom: 1px solid var(--wp--preset--color--custom-stroke-default);
    flex-wrap: wrap;
}

.wp-block-table tr:last-child {
    border-bottom: none;
}

.wp-block-table td,
.wp-block-table th {
    flex: 1;
    padding: 12px;
    border: 0;
    text-align: left;
    min-width: 0; /* Dla łamania */
    overflow-wrap: break-word;
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.wp-block-table td[colspan="2"],
.wp-block-table th[colspan="2"] {
    flex: 2;
}
