.modalBackground { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.5); display: flex; justify-content: center; align-items: center; z-index: 1000; } .modalContent { background: white; padding: 20px; border-radius: 8px; width: 400px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); animation: fadeIn 0.3s ease-out; } .reportButton { background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; outline: none; } .reportIcon { width: 40px; height: 40px; transition: transform 0.2s ease; } .reportButton:hover .reportIcon { transform: scale(1.1); background: none; } .inputField, .textareaField { width: 100%; padding: 10px; margin-bottom: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 14px; } .textareaField { height: 100px; resize: none; } .buttonGroup { display: flex; justify-content: flex-end; } .submitButton { background: #4caf50; color: white; border: none; padding: 10px 15px; border-radius: 4px; cursor: pointer; margin-right: 10px; } .cancelButton { background: #f44336; color: white; border: none; padding: 10px 15px; border-radius: 4px; cursor: pointer; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }