
pre {
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Highlight tabs with a subtle background using ::before */
pre span.tab {
    display: inline-block;
    width: 2em;
}

.script {
  font-size: 150%;
  line-height: 2;
}

/* 1. Emphasized elements — raised slightly */
em {
  position: relative;
  padding-left: 0.1em;
  top: -0.5em;
  font-style: normal;
}

.secun {
  position: relative;
  padding-left: 0.1em;
  top: -0.15em;
  font-style: normal;
}

/* 2. Deemphasized elements — lighter gray */
.elis {
  font-size: 0.75em;
  color: #888;
  font-style: italic;
}

/* 3. Short elements — rushing symbol ABOVE and animated */
.short {
  position: relative;
  display: inline-block;
  font-size: 15px;
}

.group {
  display: inline-block;
  position: relative;
  padding: 0 0.01em;  /* small horizontal padding */
  margin: 0 0.05em;
  font-size: 15px;
}

.group::before {
  content: "";
  position: absolute;
  top: +0.1em;          /* lift above letters */
  left: 0;
  right: 0;
  height: 0.3em;        /* thickness of arc */
  border-top: 1px solid black;
  border-radius: 50% / 100%;  /* creates the gentle curve */

}

.short::before {
  content: "»"; /* rushing symbol — can be ➤, ⏩, etc. */
  position: absolute;
  top: -0.5em;
  left: 50%;
  transform: translateX(-50%) scale(1);
  font-size: 1em;
  color: inherit;
  
  /* Animation */
  animation: rush 1s linear infinite;
}

.short, .group {
  font-size: 1em; /* or 16px if you prefer */
}

@keyframes rush {
  0% {
    transform: translate(-50%, 0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-20%, -0.2em) scale(1.3);
    opacity: 0.7;
  }
  100% {
    transform: translate(20%, 0) scale(1);
    opacity: 0;
  }
}
