.notification-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  border-radius: 0;
  background: #F28A31;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 50%;
  top: 1rem;
  opacity: 0;
  width: 96%;
  z-index: 99;
  transform: translateY(-10px) translateX(-50%);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Visible state */
.notification-container.show {
  opacity: 1;
  transform: translateY(0) translateX(-50%);
  pointer-events: auto;
}

.notification-content {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.notification-message {
  font-size: 14px;
  font-weight: 500;
}

/* Close button */
.notification-close-btn {
  background: none;
  border: none;
  padding: 4px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.notification-close-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Success styles */
.notification-success {
  background-color: #F28A31;
  border-color: #F28A31;
  color: #171717;
}

.notification-success .icon-success {
  color: #171717;
}

/* Error styles */
.notification-error {
  background-color: #D44242;
  border-color: #D44242;
  color: #fff;
}

.notification-error .icon-error {
  color: #fff;
}

/* Warning styles */
.notification-warning {
  background-color: #fefcbf;
  border-color: #faf089;
  color: #975a16;
}

.notification-warning .icon-warning {
  color: #d69e2e;
}



@media screen and (min-width: 720px) {

  .notification-container {
    width: 100%;
    max-width: 583px;
  }

}
