/* Toast Notifications - Đậu Đậu Quán */

.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 280px;
  max-width: 350px;
  z-index: 1060;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.toast-notification.active {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(40, 167, 69, 0.2);
  color: #28a745;
  font-size: 18px;
}

.toast-content {
  flex: 1;
}

.toast-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}

/* Responsive styles */
@media (max-width: 576px) {
  .toast-notification {
    bottom: 20px;
    right: 20px;
    left: 20px;
    max-width: none;
    width: auto;
  }
} 