.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast-message {
  background: white;
  color: #333;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  max-width: 450px;
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: auto;
  border-left: 5px solid #333;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.toast-message.show {
  transform: translateX(0);
}

.toast-message.success {
  border-left-color: #48bb78;
}

.toast-message.success .toast-icon {
  color: #48bb78;
}

.toast-message.error {
  border-left-color: #f56565;
}

.toast-message.error .toast-icon {
  color: #f56565;
}

.toast-message.info {
  border-left-color: #4299e1;
}

.toast-message.info .toast-icon {
  color: #4299e1;
}

.toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.toast-content {
  flex: 1;
}

.toast-close {
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  background: none;
  border: none;
  font-size: 18px;
  padding: 0;
  display: flex;
  align-items: center;
}

.toast-close:hover {
  opacity: 1;
}
