.ceballos-toast-region {
  bottom: 1.5rem;
  display: grid;
  gap: 0.75rem;
  max-width: min(24rem, calc(100vw - 2rem));
  position: fixed;
  right: 1.5rem;
  z-index: 1080;
}

.ceballos-toast {
  align-items: flex-start;
  animation: ceballos-toast-slide-in 0.28s ease forwards;
  background-color: #fff;
  border: 1px solid rgba(205, 71, 154, 0.22);
  border-left: 0.35rem solid var(--ceballos-cleaning-header);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  color: #333;
  display: flex;
  gap: 0.75rem;
  opacity: 0;
  padding: 1rem;
  transform: translateX(1.25rem);
}

.ceballos-toast.is-hiding {
  animation: ceballos-toast-slide-out 0.22s ease forwards;
}

.ceballos-toast--error {
  border-left-color: #dc3545;
}

.ceballos-toast--warning {
  border-left-color: #ffc107;
}

.ceballos-toast__content {
  flex: 1 1 auto;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.45;
}

.ceballos-toast__close {
  align-items: center;
  background-color: transparent;
  border: 0;
  color: inherit;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1.1rem;
  justify-content: center;
  line-height: 1;
  opacity: 0.65;
  padding: 0;
}

.ceballos-toast__close:hover,
.ceballos-toast__close:focus {
  opacity: 1;
}

.ceballos-toast-source-hidden {
  display: none !important;
}

@keyframes ceballos-toast-slide-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes ceballos-toast-slide-out {
  to {
    opacity: 0;
    transform: translateX(1.25rem);
  }
}

@media (max-width: 575.98px) {
  .ceballos-toast-region {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }
}
