﻿/* service-banned-words.css - Extracted from inline styles */
* { font-family: 'Noto Sans SC', sans-serif; }
    html { scroll-behavior: smooth; }
    .highlight-word {
      background: #FEE2E2;
      color: #E60012;
      padding: 0 4px;
      border-radius: 3px;
      border-bottom: 2px solid #E60012;
      font-weight: 500;
    }
    .highlight-warn {
      background: #FEF3C7;
      color: #D97706;
      padding: 0 4px;
      border-radius: 3px;
      border-bottom: 2px solid #D97706;
      font-weight: 500;
    }
    @keyframes scan-line {
      0% { left: 0; }
      100% { left: 100%; }
    }
    .scan-animate::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 2px;
      height: 100%;
      background: #E60012;
      box-shadow: 0 0 8px #E60012;
      animation: scan-line 2s linear infinite;
    }
