.notification-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--accent), #2b9348);
  color: var(--neutral-light);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.notification-icon {
  font-size: 1.5rem;
  color: var(--neutral-light);
}

.notification-text {
  font-size: 1rem;
  font-weight: var(--fw-regular);
}

.notification-text strong {
  font-weight: var(--fw-bold);
}

.notification-close {
  background: transparent;
  border: none;
  color: var(--neutral-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  border-radius: 4px;
}

.notification-close:hover {
  opacity: 0.7;
  background: rgba(255, 255, 255, 0.1);
}

.notification-banner.hidden {
  animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .notification-banner {
    padding: 0.75rem 1rem;
  }

  .notification-text {
    font-size: 0.875rem;
  }

  .notification-icon {
    font-size: 1.25rem;
  }
}
