/* editor-footer固定在底部 - 木色主题 */
.editor-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-top: 1px solid rgba(148, 120, 84, 0.2);
    /* 木色背景 - 统一色调 */
    background: #f0dec7;
    height: 50px;
    z-index: 10;
}

/* editor-footer固定在底部 - 木色主题 */
.editor-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-top: 1px solid rgba(148, 120, 84, 0.2);
    /* 木色背景 - 统一色调 */
    background: #f0dec7;
    height: 50px;
    z-index: 10;
}

.save-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #8b5e3c;
    /* 深木色文字 */
}

/* 全屏模式下强制隐藏 footer */
.editor-modal.fullscreen .editor-footer {
    display: none !important;
}

@media (max-width: 768px) {
    .editor-footer {
        height: 40px;
        padding: 6px 10px;
    }

    .editor-footer .save-status {
        gap: 5px;
        font-size: 11px;
    }
}