.notification-push-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.notification-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  margin-right: 0.25rem;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--color-primary, #3a788a);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.notification-button:hover:not(:disabled) {
  background: rgba(58, 120, 138, 0.12);
}

.notification-button--active {
  color: var(--color-primary-dark, #2c6678);
}

.notification-button--disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.notification-push-wrap .webpush-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.notification-push-wrap #webpush-message {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 200;
  margin-top: 0.35rem;
  min-width: 14rem;
  max-width: 18rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  line-height: 1.35;
  color: #333;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
