/* ============================================
Base64加密解密工具样式
============================================ */

/* Ace 编辑器容器高度 */
#base64-encode,
#base64-decode {
    height: 500px !important;
    min-height: 500px;
    width: 100%;
}

/* Ace 编辑器样式 */
.ace_editor {
    height: 500px !important;
    min-height: 500px;
    border-radius: 14px;
}

/* 编辑器包装器内的 Ace 编辑器 */
.editor-wrapper .ace_editor {
    border-radius: 14px;
}

/* 编辑器文本区域样式优化 */
.editor-wrapper #base64-encode,
.editor-wrapper #base64-decode {
    font-family: 'Courier New', 'Consolas', 'Monaco', 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

