/*
 * [INPUT]: public/admin/editor.html - 编辑器页面结构
 * [OUTPUT]: 编辑器主题覆盖样式
 * [POS]: 编辑器主题与基础覆盖样式
 *
 * [自指声明]
 * 1. 一旦我被更新，必须更新本文件 Header
 * 2. 影响外部接口则更新所属 folder/CLAUDE.md
 * 3. 架构级变动则更新根目录 CLAUDE.md
 * 4. 若依赖的文件 POS 变化，需检查本文件 INPUT 是否仍然准确
 *
 * [PROTOCOL]: 变更时更新此头部，然后检查 CLAUDE.md
 */
/* 强制覆盖确保文字可见 */
        body {
            background: #fff !important;
            color: #000 !important;
        }
        
        .editor-sidebar {
            background: #f8f9fa !important;
            color: #000 !important;
        }
        
        .logo {
            color: #000 !important;
        }
        
        header {
            background: white !important;
            border-bottom: 1px solid #ddd !important;
        }
        
        .section-title {
            color: #000 !important;
        }
        
        .form-group label {
            color: #666 !important;
        }
        
        /* 编辑器主体背景 */
        .editor-main {
            background: white !important;
        }
        
        /* Toast UI 编辑器背景 */
        .toastui-editor-defaultUI {
            background: white !important;
        }
        
        .toastui-editor-md-container,
        .toastui-editor-ww-container {
            background: white !important;
            color: #000 !important;
        }
        
        /* 确保输入框样式 */
        input[type="text"],
        input[type="date"],
        textarea,
        select {
            background: white !important;
            color: #000 !important;
            border: 1px solid #ddd !important;
        }
        
        /* 确保按钮样式 */
        .btn {
            background: transparent !important;
            color: #000 !important;
            border: 1px solid #000 !important;
        }
        
        .btn:hover {
            background: #000 !important;
            color: white !important;
        }
        
        .btn-secondary {
            border-color: #666 !important;
            color: #666 !important;
        }
        
        .btn-secondary:hover {
            background: #666 !important;
            color: white !important;
        }
        
        .btn-text {
            border: none !important;
            color: #666 !important;
        }
        
        .btn-text:hover {
            background: #f5f5f5 !important;
            color: #000 !important;
        }
