#toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 0.375rem;
  border: 1px solid;
  min-width: 300px;
  max-width: 500px;
  animation: toast-slide-in 0.2s ease-out;
}

.toast button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.toast button:hover {
  opacity: 1;
}

@keyframes toast-slide-in {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.toast-success {
  background-color: #F0FDF4;
  border-color: #BBF7D0;
  color: #166534;
}

.toast-error {
  background-color: #FEF2F2;
  border-color: #FECACA;
  color: #991B1B;
}
