/* ═══════════════════════════════════════════════════════════
   UNDO / REDO BUTTONS
   ═══════════════════════════════════════════════════════════ */

#undoBtn,
#redoBtn {
    transition: opacity 0.15s ease, background 0.12s ease;
}

#undoBtn:disabled,
#redoBtn:disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.35;
}

#undoBtn:not(:disabled):hover,
#redoBtn:not(:disabled):hover {
    background: rgba(255, 255, 255, 0.12);
}
