.notification-banner {
  background-color: #259271;
  color: white;
  position: relative;
  z-index: 1000;
  padding-top: calc(11px + env(safe-area-inset-top));
  box-sizing: border-box;
  padding-bottom: 11px;
}

.notification-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.notification-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  transition: opacity 0.3s ease;
  font-style: italic;
}

.notification-link .underline {
  text-decoration: underline;
}

.notification-link:hover {
  opacity: 0.8;
  color: white;
  text-decoration: none;
}

.notification-arrow {
  margin: 0 10px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .notification-banner {
    padding: 10px 0;
    min-height: 44px;
  }

  .notification-link {
    font-size: 14px;
  }

  .notification-arrow {
    margin: 0 5px;
  }
}
