/* ═══════════════════════════════════════════
       DESIGN TOKENS — matches voice-suite.html
    ═══════════════════════════════════════════ */
    :root {
      --stt_bg:        #0d0f14;
      --surface:   #13161e;
      --panel:     #1a1e29;
      --stt_border:    #252b3b;
      --green:     #4fffb0;
      --cyan:      #00c9ff;
      --warn:      #ff6b6b;
      --yellow:    #f7c948;
      --purple:    #b48cff;
      --stt_text:      #e8eaf0;
      --stt_muted:     #5a6175;
      --stt_radius:    14px;
      --nav-h:     66px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { background: #0d0f14; font-family: 'Syne', sans-serif; min-height: 100vh; }
    body::before {
      content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
      background-image:
        linear-gradient(rgba(79,255,176,.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79,255,176,.022) 1px, transparent 1px);
      background-size: 40px 40px;
    }


    main{
      margin: 0 auto;
      min-height: 70vh;
    }




    /**==========DISCLAIM BANNER=======*/

.disclaimer-banner {
  margin-top: 0.2rem;
  width: 100%;
  background-color: #161920; /* Elevates beautifully above #0d0f14 */
  border-top: 1px solid #232836; /* Subtle top border separator */
  color: #cbd5e1; /* Clean slate-gray for text */
  padding: 12px 16px;
  box-shadow: 0 -10px 25px -5px rgba(0, 0, 0, 0.6);
  z-index: 9999;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
}

.banner-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.banner-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.banner-content strong {
  color: #ffffff; /* Sharp white for critical details */
}

.banner-content .highlight-warning {
  color: #fbbf24; /* Warning amber color */
}

.banner-content .emoji {
  margin-right: 4px;
}

.close-btn {
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.close-btn:hover {
  color: #ffffff;
  transform: scale(1.1);
}

/* Responsiveness for mobile screens */
@media (max-width: 600px) {
  .banner-content {
    align-items: flex-start;
  }
  .banner-content p {
    font-size: 13px;
  }
}
/*End DISCLAIM BANNER*/