/* Floating Popup Toast Styling */
.contact .popup-toast {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1050;
  width: max-content;
  max-width: 90%;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 50rem; /* Pill-shaped popup */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  animation: slideUpFade 0.3s ease-in-out forwards;
}

/* Colors matching modern alert states */
.contact .sent-message.popup-toast {
  background-color: #198754;
  color: #ffffff;
  border: none;
}

.contact .error-message.popup-toast {
  background-color: #dc3545;
  color: #ffffff;
  border: none;
}

.contact .loading.popup-toast {
  background-color: #212529;
  color: #ffffff;
  border: none;
}

/* Smooth Entrance Animation */
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translate(-50%, 15px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}