@keyframes vanRemoveAdFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.van-remove-ad-badge {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin: 0 0 4px;
  animation: vanRemoveAdFadeIn 0.35s ease-out;
}

.van-remove-ad-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 10px 10px;
  border-radius: 3px;
  border: none;
  background: #008000;
  color: #fff;
  font: 700 9px/1 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s;
}

.van-remove-ad-pill:hover,
.van-remove-ad-pill:focus-visible {
  background: #006600;
  color: #fff;
  outline: none;
}
