#notification-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1000;
  display: grid;
  gap: 12px;
  width: min(360px, calc(100vw - 32px));
  pointer-events: none;
}

.notification {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 18px;
  color: #ffffff;
  background: #1f2937;
  border: 1px solid rgba(199, 166, 106, 0.5);
  border-left: 4px solid #c7a66a;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.notification--visible {
  opacity: 1;
  transform: translateY(0);
}

.notification--error {
  border-left-color: #d86a6a;
}

.notification--warning {
  border-left-color: #f2d16b;
}

.notification__icon {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #1f2937;
  background: #c7a66a;
  border-radius: 50%;
  font-weight: 700;
}

.notification--error .notification__icon {
  color: #ffffff;
  background: #d86a6a;
}

.notification--warning .notification__icon {
  background: #f2d16b;
}

.notification__message {
  margin: 2px 0 0;
  color: inherit;
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (max-width: 480px) {
  #notification-container {
    top: 16px;
    right: 16px;
  }
}
