.modalOverlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.5); display: flex; align-items: center; justify-content: center; z-index: 1000; } .modalContent { background: white; padding: 20px; border-radius: 8px; width: 400px; text-align: center; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); } .modalButton { margin-top: 15px; padding: 8px 16px; font-size: 0.9em; border: none; border-radius: 4px; cursor: pointer; transition: background-color 0.3s ease, transform 0.2s ease; box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1); } .modalButton:hover { transform: scale(1.05); } .modalButton:active { transform: scale(0.95); } .modalButtonClose { background-color: #FFA550; color: white; margin: 10px; } .modalButtonClose:hover { background-color: #FF8C00; } .modalButtonDelete { background-color: #FF5A5F; color: white; } .modalButtonDelete:hover { background-color: #FF3333; }