#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.toast {
  padding: 12px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #333;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.5s ease;
  font-family: sans-serif;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-weight: bold;
}

/* Animace */
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Typy zpráv */
.toast.success {
  background: #c7f8c6; /* zelená */
}

.toast.error {
  background: #ffdaf2; /* červená */
}

.toast.info {
  background: #17a2b8; /* modrá */
}
