/* src/styles/swal-custom.css */
.swal2-popup.custom-swal-popup {
  font-family: 'Arial', sans-serif;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.swal2-title.custom-swal-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.swal2-content.custom-swal-content {
  font-size: 16px;
  color: #555;
}

.swal2-confirm.custom-swal-confirm-btn {
  background-color: #3085d6;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
}

.swal2-confirm.custom-swal-confirm-btn:hover {
  background-color: #1a73e8;
}

.swal2-cancel.custom-swal-cancel-btn {
  background-color: #d33;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
}

.swal2-cancel.custom-swal-cancel-btn:hover {
  background-color: #c62828;
}