/* Notification Banner Styles */
.notification-banner {
  position: fixed;
  top: -100px; /* Start off-screen */
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #3a5db0, #5ac8fa);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  max-width: 90%;
  transition: top 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-banner.show {
  top: 80px; /* Position below the navigation */
}

.notification-banner .key {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 2px 8px;
  margin: 0 4px;
  font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .notification-banner {
    font-size: 14px;
    padding: 10px 16px;
  }
  
  .notification-banner.show {
    top: 70px;
  }
}
