/* SVG prompt board container */
#prompt-board {
  max-width: 80vw;
  position: relative;
  overflow: hidden;
}

/* Base SVG styles */
#spwPromptSVG {
  width: 100%;
  height: auto;
  border: 3px solid var(--accent);
  border-radius: 1rem;
  backdrop-filter: blur(8px) saturate(1.3);
  box-shadow: 0 8px 24px var(--shadow-light);
  transition: transform var(--transition-fast);
}

#spwPromptSVG:hover {
  transform: translateY(-6px) scale(1.02);
}

/* Text styling inside SVG */
.prompt-text { font-family: var(--font-mono); }
.prompt-title { font-size: 1.8rem; fill: #fff; }
.prompt-line  { font-size: 1.2rem; }
.label        { fill: var(--accent); font-weight: bold; }
.value        { fill: var(--fg); }
.bg-layer     { fill: #3f4c46; }

