.onboarding-tooltip {
  width: max-content;
  max-width: min(350px, 75vw);
  position: absolute;
  top: 0;
  left: 0;
  background: var(--onboarding-color);
  color: white;
  border-radius: 4px;
  padding: 6px;
  font-size: 1rem;
  line-height: 1.5;
  filter: drop-shadow(0 10px 8px rgb(0 0 0 / .04)) drop-shadow(0 4px 3px rgb(0 0 0 / .1));
}
.onboarding-tooltip-heading {
  display: flex;
  gap: 0.5em;
  justify-content: space-between;
  font-weight: bold;
}
.onboarding-tooltip-body>:last-child {
  margin-bottom: 0;
}
.onboarding-tooltip button {
  border: none;
  outline: none;
  color: white;
  background: transparent;
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.5em;
}
.onboarding-tooltip button:hover,
.onboarding-tooltip button:focus-visible {
  background: rgb(0 0 0 / 0.1);
}
.onboarding-tooltip button:active {
  background: rgb(0 0 0 / 0.05);

}
.onboarding-tooltip-footer:not(.tw-hidden) {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5em;
}
.onboarding-tooltip-arrow {
  position: absolute;
  background: var(--onboarding-color);
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}