/* ==== SweetAlert2 Custom ==== */
.swal2-popup {
  border-radius: 20px !important;  /* bordas arredondadas */
  padding: 1.5rem !important;
  font-family: "Inter", sans-serif;
}

/* título */
.swal2-title {
  font-size: 1.4rem !important;
  font-weight: 700;
  color: #0f1217;
}

/* texto */
.swal2-html-container {
  font-size: 0.95rem !important;
  color: #6b7280;
}

/* botões */
.swal2-styled.swal2-confirm {
  background: #0d6efd !important;  /* azul */
  border-radius: 999px !important;
  padding: 0.6rem 1.4rem !important;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}
.swal2-styled.swal2-confirm:hover {
  background: #0b5ed7 !important;
  transform: translateY(-2px);
}

.swal2-styled.swal2-cancel {
  background: #f1f5f9 !important;  /* cinza claro */
  color: #374151 !important;
  border-radius: 999px !important;
  padding: 0.6rem 1.4rem !important;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}
.swal2-styled.swal2-cancel:hover {
  background: #e2e8f0 !important;
  transform: translateY(-2px);
}
