/* Style dla bloku listy podstron */
.subpages-list-block-editor {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.subpages-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    width: 100%;
    max-width: 600px;
}

.subpage-item {
    margin: 5px 0;
    width: 100%;
}

.subpage-item.level-1 {
    padding-left: 0;
    font-weight: bold;
}

.subpage-item.level-2 {
    padding-left: 20px;
}

.subpage-toggle {
    cursor: pointer;
    color: #333;
    display: inline-block;
    position: relative;
    padding-left: 20px;
    width: 100%;
    box-sizing: border-box;
}

.subpage-toggle::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 0;
    transition: transform 0.2s;
}

.subpage-toggle.expanded::before {
    transform: rotate(90deg);
}


.grandchildren-list {
    list-style: none;
    padding: 0;
    margin: 5px 0 5px 20px;
    width: 100%;
}

/* Style dla trybu jednego poziomu */
.subpages-list[data-levels="one"] .subpage-item.level-1 {
    font-weight: normal;
}