
.detail-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-title);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}



  .compare-card {
    padding: 32px;
  }
  .compare-table-wrap {
    margin: 0 -4px;
  }
  .compare-table {
    width: 100%; border-collapse: separate; border-spacing: 5px;
    font-variant-numeric: tabular-nums;
  }
  .compare-table th, .compare-table td { padding: 5px 6px; text-align: center; font-size: 13px; }
  .compare-table thead th {
    background: transparent; font-weight: 600;
    color: #64748b; font-size: 11.5px; line-height: 1.3; vertical-align: bottom;
  }
  .compare-table thead th small {
    display: block; font-weight: 500; color: #94a3b8;
    font-size: 10.5px; margin-top: 1px;
  }
  .compare-table thead th.current-col {
    background: #fdf6e3; color: #a48648;
    border-radius: 6px 6px 0 0;
  }
  .compare-table thead th.current-col small { color: #a48648; font-weight: 700; }
  .compare-table tbody td { font-weight: 700; font-size: 17px; color: #0f172a; border-radius: 6px; }
  .compare-table tbody td.res-cell {
    text-align: left; font-weight: 600; font-size: 13px;
    color: #0f172a; background: #f8fafc; border-radius: 6px;
  }
  .compare-table tbody td.res-cell small {
    display: block; font-weight: 500; color: #64748b;
    font-size: 10.5px; margin-top: 1px;
  }



  
  .cell-good { background: #d1fae5; color: #047857; }
  .cell-warn { background: #fef3c7; color: #b45309; }
  .cell-bad  { background: #fee2e2;  color: #b91c1c; }
  .cell-none { background: #f8fafc;}
  .cell-current {
    background: linear-gradient(135deg, #fef3c7 0%, #fdf6e3 100%);
    color: #a48648;
    box-shadow: 0 0 0 2px #c8aa6e, 0 4px 12px rgba(200,170,110,.25);
    position: relative;
  }
  .cell-current::before {
    content: "★"; position: absolute;
    top: -8px; right: -8px;
    width: 18px; height: 18px;
    background: #c8aa6e; color: #fff;
    border-radius: 50%;
    font-size: 11px; line-height: 18px;
    box-shadow: 0 2px 6px rgba(200,170,110,.5);
  }
  .compare-note {
    margin-top: 14px; font-size: 11px;
    color: #94a3b8; text-align: center;
  }






