.notifications-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notification {
  position: relative;
  padding: 15px 40px 15px 60px;
  border-radius: 8px;
  background: #2A2E35;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideIn 0.3s ease-out;
  max-width: 350px;
  border-left: 4px solid #FF4757;
  font-family: 'Segoe UI', sans-serif;
}

.notification._success {
  border-left-color: #2ED573;
}

.notification._warning {
  border-left-color: #FFA726;
}

.notification._info {
  border-left-color: #2196F3;
}

.notification__icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification__close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 5px;
  font-size: 16px;
  transition: color 0.2s;
}

.notification__close:hover {
  color: white;
}

.notification__title {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 15px;
}

.notification__message {
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.9;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.notification.removing {
  animation: slideOut 0.3s ease-in forwards;
}
/* Cache version: 55972997 - Updated: 2025-08-23 21:16:37 */