/* --- Quote Box --- */
#quoteBox {
  position: absolute;
  padding: var(--spacing-md);
  z-index: 10;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.4s ease-in-out, border-color 0.3s ease;
  overflow: hidden;
  min-width: 280px;
  min-height: 80px;
  max-width: 90vw;
  max-height: 50vh;
  border: 1px dashed transparent;
}

#quoteBox.hidden {
  display: none;
}

.quote-content-wrapper {
  width: 100%;
  height: 100%;
  padding: var(--spacing-md);
  background-color: var(--color-surface-bright);
  border-radius: var(--radius-md);
  color: var(--color-text-on-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-md);
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

#quoteText .typed-cursor {
  color: var(--color-primary);
  opacity: 1;
  animation: typedjsBlink 0.7s infinite;
}

@keyframes typedjsBlink {
  50% {
    opacity: 0;
  }
}