.deftag {
  display: inline;
  position: relative;
  width: fit-content;
  color: #05b6e7;
  text-decoration: underline;
}

.deftag-card[data-show] {
  display: block;
}

.deftag-card {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 100%;
  min-width: 100px;
  max-width: 300px;
  width: max-content;
  border: 1px solid lightgrey;
  border-radius: 0.5rem;
  box-shadow: rgba(37, 38, 39, 0.03) 0px -1px 3px 0px,
    rgba(37, 38, 39, 0.03) 0px 1px 2px -5px,
    rgba(37, 38, 39, 0.05) 0px 2px 5px -5px,
    rgba(37, 38, 39, 0.06) 0px 4px 12px -5px,
    rgba(37, 38, 39, 0.08) 0px 12px 15px -5px;
  transform: translateX(-50%);
  overflow: hidden;
}

.deftag-card__header {
  padding: 1em;
  background-color: gainsboro;
  color: black;
  font-weight: bold;
}

.deftag-card__header p {
  margin: 0;
}

.deftag-card__content {
  padding: 1em;
  background-color: white;
  color: black;
}
