    :root {
      --accent-color: #66ffcc;
      --bg-color: #0f1115;
      --text-color: #f2f2f2;
    }

    body {
      font-family: system-ui, sans-serif;
      background: #111;
      color: #eee;
      margin: 0;
      padding: 0;
    }

    header {
      text-align: center;
      padding: 2rem 1rem;
      background: linear-gradient(180deg, #111 0%, #181818 100%);
      border-bottom: 1px solid #333;
    }
    
    header h1 {
      margin-bottom: 0.3rem;
    }

    .summary {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem;
      font-size: 1rem;
    }

    .summary span {
      padding: 0.3rem 0.6rem;
      border-radius: 4px;
      font-weight: 600;
    }

    .tagline {
      font-size: 1.1rem;        
      font-weight: 400;         
      color: #aaa;                
      margin: 0.25rem 0 1rem;     
      letter-spacing: 0.3px;      
      font-style: italic;        
    }

    .critical { background: #8b0000; }
    .high { background: #b22222; }
    .medium { background: #b8860b; }
    .low { background: #2e8b57; }

    .servers {
      max-width: 900px;
      margin: 2rem auto;
      padding: 0 0.5rem; /* previously padding: 0 1rem; - nuding up a bit*/
    }

    table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 2rem;
    }

    th, td {
      padding: 0.5rem;
      border-bottom: 1px solid #333;
      text-align: center;
    }

    th {
      background: #222;
    }


    a {
      color: var(--accent-color);
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    .vuln-list {
      background: #181818;
      padding: 1rem;
      border-radius: 6px;
      margin-bottom: 1rem;
    }

    .vuln-item {
      border-bottom: 1px solid #333;
      padding: 0.5rem 0;
    }

    .vuln-item:last-child {
      border-bottom: none;
    }

    .trend-toggle {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1rem;
      margin-bottom: .5rem;
    }

    .trend-toggle a {
      display: inline-block;
      text-decoration: none;
      background-color: var(--bg-color);
      border: 1px solid var(--accent-color);
      color: var(--accent-color);
      padding: 0.4rem 0.8rem;
      border-radius: 4px;
    }

    .trend-toggle a.active {
      background-color: var(--accent-color);
      color: var(--bg-color);
    }

    .trend-down {
      color: #2ecc71; 
      font-weight: 600;
    }

    .trend-up {
      color: #e74c3c; 
      font-weight: 600;
    }

    .trend-neutral {
      color: #95a5a6; 
      font-weight: 500;
    }

    .trend-big-down {
      color: #27ae60;
      font-weight: 700;
    }

    .trend-big-up {
      color: #c0392b;
      font-weight: 700;
    }

    footer {
      text-align: center;
      padding: 1em 0;
      font-size: 0.9em;
      color: #777;
    }

    @media (max-width: 600px) {
      header {
        padding: 1rem 0.5rem;
      }

    .tagline {
      font-size: 0.95rem;
      margin-bottom: 0.5rem;
      }

    .servers table,
    .servers thead,
    .servers tbody,
    .servers th,
    .servers td,
    .servers tr {
      display: block;
    }

    .servers thead {
      display: none; 
    }

    .servers tr {
      margin-bottom: 1.25rem;
      border: 1px solid #333;
      border-radius: 6px;
      padding: 0.5rem;
      background: #181818;
    }

    .servers td {
      text-align: right;
      padding-left: 50%;
      position: relative;
      border-bottom: 1px solid #333;
    }

    .servers td::before {
      content: attr(data-label);
      position: absolute;
      left: 0.75rem;
      width: 45%;
      white-space: nowrap;
      font-weight: bold;
      color: #aaa;
      text-align: left;
    }

    .servers td:last-child {
      border-bottom: none;
    }

    .trend-toggle {
      flex-direction: row;       
      align-items: center;        
      gap: 0.4rem;
      padding: 0; /* previously padding: 0 0.5rem; */
      margin-top: 1.5rem; /* previously 1.25rem */
      margin-left: 1rem; /* previously 0 */
      margin-right: 1rem; /* previously 0 */
    }

    .trend-toggle a {
      width: 100%;
      padding: 0.6rem 0.8rem;
      font-size: 1em;
      border-radius: 6px;
      text-align: center;
      background-color: transparent;
      border: 1px solid var(--accent-color);
      color: var(--accent-color);
    }

    .trend-toggle a.active {
      background-color: var(--accent-color);
      color: var(--bg-color);
    }
  }

    .pulse {
      width: 10px;
      height: 10px;
      display: inline-block;
      background-color: #4CAF50;
      border-radius: 50%;
      animation: pulse-animation 1.8s infinite;
      margin-right: 8px;
    }

    @keyframes pulse-animation {
      0% { transform: scale(1); opacity: 0.6; }
      50% { transform: scale(1.5); opacity: 1; }
      100% { transform: scale(1); opacity: 0.6; }
    }