/* Editor Section */
.editors {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.editor-container {
    background: #2d2d2d;
    border-radius: 5px;
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.editor-container.minimized {
    flex: 0 0 35px;
}

.editor-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    color: #ccc;
}

/* CodeMirror Customization */
.CodeMirror {
    position: absolute !important;
    top: 35px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    height: auto !important;
}

.minimize-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
} 