#notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1010;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notification {
  padding: 15px;
  border-radius: 5px;
  color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 300px;
  transform: translateX(0);
  opacity: 1;
  transition: all 0.3s ease;
}

.notification-message {
  flex-grow: 1;
  margin-right: 10px;
}

.notification-close {
  background: none;
  border: none;
  color: inherit;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

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

.notification-closing {
  transform: translateX(50%);
  opacity: 0;
}

/* Типы уведомлений */
.notification-info {
  background-color: #3498db;
}

.notification-success {
  background-color: #2ecc71;
}

.notification-warning {
  background-color: #f39c12;
}

.notification-error {
  background-color: #e74c3c;
}

/* Анимации */
@keyframes notificationSlideIn {
  from {
    transform: translateX(50%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.notification {
  animation: notificationSlideIn 0.3s ease-out;
}