/*
 * notion-enhancer core: tooltips
 * (c) 2021 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
 * (https://notion-enhancer.github.io/) under the MIT license
 */

.enhancer--tooltip {
  position: absolute;
  background: var(--theme--tooltip);
  color: var(--theme--tooltip-text);
  font-size: var(--theme--font_ui_small-size);
  padding: 0.15rem 0.4rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  border-radius: 3px;
  max-width: 20rem;
  display: none;
}
.enhancer--tooltip p {
  margin: 0.25rem 0;
}