#notification-container {
  z-index: 1000;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 300px;
  max-width: 90%;
}

.notification {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.4s ease-out;
}

.notification.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.notification .close-btn {
  background: none;
  border: none;
  color: inherit;
  opacity: 0.7;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0 0 0 10px;
  margin-left: 10px;
}

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

.notification.notification-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.notification.notification-success {
  background: #d1e7dd;
  color: #0f5132;
  border: 1px solid #badbcc;
}

.notification.notification-warning {
  background: #fff3cd;
  color: #664d03;
  border: 1px solid #ffecb5;
}

.notification.notification-info {
  background: #cff4fc;
  color: #055160;
  border: 1px solid #b6effb;
}
