.notification-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column-reverse; /* newest on top */
  gap: 10px;
  z-index: 10001;
}

.notification {
  width: 340px;
  background: rgba(20, 0, 0, 0.95);
  color: #ffb3b3;
  border: 1px solid red;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
  padding: 16px;
  font-family: "Orbitron", sans-serif;
  right: -360px;
  position: relative;
  transition: right 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.notification.visible {
  right: 0; /* slide in */
}

.notification-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  margin-bottom: 8px;
  color: red;
}

.notification .close-btn {
  cursor: pointer;
  font-size: 20px;
  color: red;
  line-height: 1;
}

.notification .close-btn:hover {
  color: white;
}

.notification p {
  margin: 0;
  font-size: 0.80em;
  line-height: 1.3;
  color: red;
}
