.page-container.sortable-item {
    flex-direction: column;
    padding: 0;
    width: 100%;
    margin: 5px 0;
    overflow: visible;
}

.page-header {
    width: 100%;
    padding: 5px;
    text-align: center;
}

.page-header h2 {
    margin: 0;
    text-align: center;
    font-size: 1.2em;
    padding: 2px 0;
}

.editor-container {
    width: 95%;
    margin: 0px 2.5% 15px 2.5%;
    background: white;
    border-radius: 5px;
    position: relative;
    border: 1px solid #ddd;
    overflow: visible;
}

.editor-iframe {
    display: block;
    background: white;
    width: 100%;
    min-height: 0;
    border: none;
    overflow: visible;
}

.editor-container[contenteditable="true"] {
    outline: 2px solid #007bff;
}

.editor-container[contenteditable="false"] {
    outline: none;
}



.page-container.editing .editor-container {
    border-color: #80bdff;
    outline: none;
    transition: border-color 0.15s ease-in-out;
}

.separator {
    width: 0px;
    border: 1px solid #111;
    margin: 0 3px;
    display: inline-block;
}

.global-actions {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 8px 0;
    width: 100%;
}

.page-actions {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 5px 0px;
    width: 100%;
}
