    body {
      font-family: Arial, sans-serif;
      background: #f5f6f8;
      margin: 0;
      color: #1f2937;
    }
    .container {
      max-width: 1100px;
      margin: 30px auto;
      background: #fff;
      padding: 24px;
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
    h1, h2, h3 {
      margin-top: 0;
      color: #111827;
    }
    .intro, .helpbox {
      background: #f9fafb;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      padding: 12px 14px;
      line-height: 1.5;
    }
    .layout {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 24px;
    }
    .field {
      margin-top: 16px;
    }
    label {
      display: block;
      font-weight: bold;
      margin-bottom: 6px;
    }
    input, select, textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      font-size: 14px;
      box-sizing: border-box;
    }
    textarea {
      min-height: 90px;
      resize: vertical;
    }
    .help {
      margin-top: 6px;
      font-size: 13px;
      color: #4b5563;
      line-height: 1.5;
      background: #f9fafb;
      padding: 8px 10px;
      border-left: 3px solid #9ca3af;
      border-radius: 6px;
    }
    .example {
      margin-top: 4px;
      font-size: 12px;
      color: #6b7280;
    }
    .actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 20px;
    }
    button {
      padding: 12px 18px;
      background: #111827;
      color: #fff;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 14px;
    }
    button:hover {
      background: #1f2937;
    }
    button.secondary {
      background: #374151;
    }
    button.danger {
      background: #991b1b;
    }
    .report {
      margin-top: 32px;
      padding-top: 20px;
      border-top: 2px solid #e5e7eb;
      display: none;
    }
    .section {
      margin-bottom: 24px;
    }
    .section h3 {
      margin-bottom: 8px;
      border-bottom: 1px solid #e5e7eb;
      padding-bottom: 6px;
    }
    ul {
      padding-left: 20px;
    }
    .summary-box {
      background: #f9fafb;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      padding: 12px;
      line-height: 1.6;
    }
    .note {
      margin-top: 20px;
      font-size: 13px;
      color: #6b7280;
      line-height: 1.5;
    }
    .sidebar {
      border-left: 1px solid #e5e7eb;
      padding-left: 20px;
    }
    .case-list {
      margin-top: 12px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .case-card {
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      padding: 10px;
      background: #fafafa;
    }
    .case-card h4 {
      margin: 0 0 6px 0;
      font-size: 14px;
    }
    .case-meta {
      font-size: 12px;
      color: #6b7280;
      margin-bottom: 8px;
      line-height: 1.4;
    }
    .case-card .actions {
      margin-top: 8px;
    }
    .small-btn {
      padding: 8px 10px;
      font-size: 12px;
    }
    .empty-state {
      font-size: 13px;
      color: #6b7280;
      padding: 10px 0;
    }
    @media (max-width: 900px) {
      .layout {
        grid-template-columns: 1fr;
      }
      .sidebar {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #e5e7eb;
        padding-top: 20px;
      }
    }

.tao-results-root {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.tao-result-card {
  background: #111827;
  color: #f9fafb;
  border: 1px solid #1f2937;
  border-radius: 14px;
  padding: 18px;
}

.tao-result-card h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.tao-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.tao-kpi {
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 14px;
}

.tao-kpi-label {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 6px;
}

.tao-kpi-value {
  font-size: 24px;
  font-weight: 700;
}

.tao-score-grid {
  display: grid;
  gap: 14px;
}

.tao-score-row-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.tao-score-label {
  font-weight: 600;
}

.tao-score-value {
  font-weight: 700;
}

.tao-score-bar {
  width: 100%;
  height: 10px;
  background: #1e293b;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 6px;
}

.tao-score-bar-fill {
  height: 100%;
  background: #38bdf8;
  border-radius: 999px;
}

.tao-score-rationale {
  font-size: 13px;
  color: #cbd5e1;
}

@media (max-width: 768px) {
  .tao-kpis {
    grid-template-columns: 1fr;
  }
}

.tao-result-card h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #e5e7eb;
}

.tao-result-card p {
  line-height: 1.6;
  color: #e5e7eb;
}

.tao-result-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.tao-result-card li {
  margin-bottom: 8px;
  line-height: 1.5;
  color: #e5e7eb;
}

.tao-mini-score-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin: 12px 0 16px;
}

.tao-mini-score {
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 12px 14px;
}

.tao-mini-score-label {
  display: block;
  font-size: 12px;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.tao-mini-score-value {
  font-size: 20px;
  font-weight: 700;
  color: #f8fafc;
}

@media (max-width: 768px) {
  .tao-mini-score-grid {
    grid-template-columns: 1fr;
  }
}
	