.toast-container {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: rgba(0, 0, 0, 1);
  padding: 12px;
  border-radius: 10px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  box-sizing: border-box;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 250px;
  max-width: 80%;
  transition: opacity 0.3s;
}

.toast-fade-out {
  opacity: 0;
}

.toast-icon {
  min-width: 20px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  position: relative;
}

.error-icon {
  background: rgba(234, 89, 89, 1);
}

.success-icon {
  background: rgba(38, 189, 126, 1);
}

.info-icon {
  background: rgba(64, 158, 255, 1);
}

.error-icon::before,
.error-icon::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 1px;
  background: white;
  top: 50%;
  left: 50%;
}

.error-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.error-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.success-icon::before,
.success-icon::after {
  content: '';
  position: absolute;
  background: white;
}

.success-icon::before {
  width: 6px;
  height: 2px;
  left: 4px;
  top: 10px;
  transform: rotate(45deg);
}

.success-icon::after {
  width: 10px;
  height: 2px;
  left: 6px;
  top: 9px;
  transform: rotate(-45deg);
}

.info-icon::before {
  content: 'i';
  position: absolute;
  color: white;
  font-style: italic;
  font-weight: bold;
  font-size: 14px;
  left: 8px;
  top: 1px;
}

@media (max-width: 768px) {
  .toast-container {
    max-width: 80%;
    font-size: 14px;
    padding: 10px;
  }
} 