/* SweetAlert2 Minimal - Version locale SUPTECH */
.swal2-popup {
  display: none;
  position: fixed;
  z-index: 1060;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.swal2-modal {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  padding: 20px;
  max-width: 500px;
  margin: 20px auto;
}

.swal2-title {
  color: #595959;
  font-size: 1.5em;
  font-weight: 600;
  margin: 0 0 10px;
}

.swal2-content {
  color: #545454;
  font-size: 1.125em;
  margin: 0;
}

.swal2-actions {
  margin: 20px 0 0;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.swal2-confirm, .swal2-cancel {
  border: none;
  border-radius: 4px;
  padding: 10px 24px;
  font-size: 1em;
  cursor: pointer;
}

.swal2-confirm {
  background-color: #3085d6;
  color: white;
}

.swal2-cancel {
  background-color: #d0d0d0;
  color: #555;
}