/**
 * =============================================================================
 * LunarDocs - 弹窗与确认框样式
 * =============================================================================
 */

.modal-enter { animation: modalIn 0.2s ease-out; }

#editor-modal { transition: opacity 0.3s ease; }
#editor-modal.hidden { display: none !important; }

#context-menu { animation: menuIn 0.1s ease-out; }

.ctx-item { transition: all 0.1s ease; }

#upload-overlay { animation: uploadSlideIn 0.3s ease-out; }

/* 复制弹窗文件夹列表 */
.copy-folder-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
    font-size: 13px;
    color: #6b7280;
}

.copy-folder-item:hover { background: #f3f4f6; color: #111827; }
.copy-folder-item.selected { background: #eff6ff; color: #4a9eff; border: 1px solid #bfdbfe; }
