/* casio-custom.css - Tone Editor Overlay */

.editor-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); z-index: 2000;
    display: flex; justify-content: center; align-items: center;
}

.editor-box {
    width: 300px; background: #222; border: 2px solid #00bfff;
    border-radius: 8px; padding: 15px; color: #fff;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.editor-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 15px; border-bottom: 1px solid #444; padding-bottom: 5px;
}
#close-editor-btn {
    background: none; border: none; color: #fff; font-size: 1.5em; cursor: pointer;
}

.editor-controls label {
    display: block; margin-bottom: 10px; font-size: 0.8em; color: #ccc;
}
.editor-controls input[type="text"], .editor-controls select {
    width: 100%; padding: 5px; background: #111; border: 1px solid #444; color: #fff;
    margin-top: 3px;
}
.editor-controls input[type="range"] {
    width: 100%; margin-top: 5px;
}

.editor-actions {
    display: flex; gap: 10px; margin-top: 20px;
}
