#notifications-container {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 10;
}

.alert {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  min-width: 250px;
  max-width: 350px;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 800;
  transform: translateY(100%);
  opacity: 0;
  animation: slide-in 0.5s ease forwards;
}

@keyframes slide-in {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.alert.alert-info {
  background-color: #017bff;
}

.alert.alert-success {
  background-color: #4caf50;
}

.alert.alert-warning {
  background-color: #ff9800;
}

.alert.alert-danger {
  background-color: #f44336;
}

.alert .close {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  font-size: 1rem;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.2s ease;
}

.alert .close:hover {
  color: #e0e0e0;
}
