
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'Segoe UI', Arial, sans-serif; background: #f0f2f5; color: #2d3436; font-size: 1.1em; }

    /* ── TOPBAR ── */
    .topbar {
      background: linear-gradient(135deg, #1a1a2e, #16213e);
      color: white;
      height: 52px;
      display: flex; align-items: center;
      position: fixed; top: 0; left: 0; right: 0; z-index: 300;
      box-shadow: 0 2px 10px rgba(0,0,0,0.35);
      padding: 0 18px;
      overflow: visible;
    }
    .topbar-left {
      display: flex; align-items: center; gap: 10px;
      width: 220px; flex-shrink: 0;
    }
    .topbar-logo {
      height: 30px; width: auto; object-fit: contain;
      background: white; border-radius: 4px; padding: 2px 5px;
    }
    .topbar-brand-text {
      font-size: 0.82em; font-weight: 700; color: rgba(255,255,255,0.55);
      letter-spacing: 0.3px; white-space: nowrap;
    }
    .topbar-center {
      flex: 1; text-align: center;
      font-size: 1.1em; font-weight: 800; letter-spacing: 1.5px;
      color: white;
    }
    .topbar-right {
      width: 220px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: flex-end;
      gap: 8px;
    }
    .topbar-proposal-name {
      font-size: 0.92em; color: #ffffff; font-weight: 600;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
      max-width: 220px; text-align: right;
      background: rgba(247,148,29,0.2); border: 1px solid rgba(247,148,29,0.4);
      padding: 3px 10px; border-radius: 20px;
    }
    .save-msg { font-size: 0.85em; color: #4CAF50; opacity: 0; transition: opacity 0.5s; white-space: nowrap;
      position: absolute; left: 50%; transform: translateX(-50%); pointer-events: none; }
    .save-msg.show { opacity: 1; }
    .pdf-loading { font-size: 0.85em; color: #f7941d; opacity: 0; transition: opacity 0.3s; white-space: nowrap;
      position: absolute; left: 50%; transform: translateX(-50%); pointer-events: none; }
    .pdf-loading.show { opacity: 1; }

    /* ── BUTTONS ── */
    .btn { border: none; border-radius: 7px; padding: 8px 16px; font-size: 0.95em;
           font-weight: 600; cursor: pointer; transition: all 0.18s; }
    .btn-orange { background: #f7941d; color: white; }
    .btn-orange:hover { background: #e08010; }
    .btn-blue  { background: #2563eb; color: white; }
    .btn-blue:hover { background: #1d4ed8; }
    .btn-green { background: #15803d; color: white; }
    .btn-green:hover { background: #166534; }
    .btn-ghost  { background: rgba(255,255,255,0.12); color: white;
                  border: 1px solid rgba(255,255,255,0.25); }
    .btn-ghost:hover { background: rgba(255,255,255,0.22); }

    /* ── APP LAYOUT ── */
    .app-layout {
      display: flex;
      min-height: calc(100vh - 52px);
      margin-top: 52px;
    }

    /* ── SIDEBAR ── */
    .sidebar {
      width: 220px; flex-shrink: 0;
      background: linear-gradient(180deg, #fff9f4 0%, #fef3e8 100%);
      border-right: 1px solid #f0d5b0;
      position: fixed; top: 52px; left: 0; bottom: 0;
      overflow-y: auto; z-index: 200;
      display: flex; flex-direction: column;
      box-shadow: 2px 0 8px rgba(0,0,0,0.08);
    }
    .sidebar::-webkit-scrollbar { width: 4px; }
    .sidebar::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12); border-radius: 2px; }
    .sidebar-nav { flex: 1; padding: 12px 0; }
    .sidebar-section-label {
      font-size: 0.72em; font-weight: 700; color: #9ca3af;
      text-transform: uppercase; letter-spacing: 1px;
      padding: 14px 16px 5px;
    }
    .sidebar-link {
      display: flex; align-items: center; gap: 9px;
      padding: 8px 16px;
      color: #4b5563;
      font-size: 0.91em; font-weight: 500;
      text-decoration: none; cursor: pointer;
      border-left: 3px solid transparent;
      transition: all 0.15s;
      border-radius: 0 6px 6px 0;
      margin: 1px 8px 1px 0;
    }
    .sidebar-link:hover { color: #1a1a2e; background: rgba(247,148,29,0.08); border-left-color: rgba(247,148,29,0.5); }
    .sidebar-link.active { color: #1a1a2e; background: rgba(247,148,29,0.15); border-left-color: #f7941d; font-weight: 700; }
    .sidebar-link .nav-badge {
      width: 20px; height: 20px; border-radius: 50%;
      background: rgba(247,148,29,0.15); color: #e07010;
      font-size: 0.82em; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .sidebar-link.active .nav-badge { background: #f7941d; color: white; }
    .sidebar-link .nav-pill {
      margin-left: auto; font-size: 0.75em; font-weight: 700;
      background: rgba(0,0,0,0.06); color: #9ca3af;
      padding: 1px 5px; border-radius: 3px;
    }
    .sidebar-actions {
      padding: 12px 10px 16px;
      border-bottom: 1px solid #e2e6ed;
      display: flex; flex-direction: column; gap: 6px;
    }
    .sidebar-btn {
      display: flex; align-items: center; gap: 8px;
      padding: 8px 12px; border-radius: 7px;
      font-size: 0.9em; font-weight: 600;
      cursor: pointer; border: none; text-align: left;
      transition: all 0.15s; width: 100%;
    }
    .sidebar-btn-ghost {
      background: #ffffff;
      color: #374151;
      border: 1px solid #d1d5db;
    }
    .sidebar-btn-ghost:hover { background: #f3f4f6; color: #1a1a2e; border-color: #b0b7c3; }
    .sidebar-btn-orange { background: #f7941d; color: white; }
    .sidebar-btn-orange:hover { background: #e08010; }
    .sidebar-btn-blue { background: #2563eb; color: white; }
    .sidebar-btn-blue:hover { background: #1d4ed8; }
    .sidebar-btn-green { background: #15803d; color: white; }
    .sidebar-btn-green:hover { background: #166534; }
    .sbtn-icon { display: inline-block; min-width: 1.6em; text-align: center; flex-shrink: 0; }
    .sidebar-nav-toggle {
      display: flex; align-items: center; justify-content: space-between;
      padding: 8px 16px 8px 16px; cursor: pointer;
      font-size: 0.72em; font-weight: 700; color: #9ca3af;
      text-transform: uppercase; letter-spacing: 1px;
      user-select: none;
      transition: color 0.15s;
    }
    .sidebar-nav-toggle:hover { color: #4b5563; }
    .sidebar-nav-arrow {
      font-size: 0.85em; transition: transform 0.2s;
    }
    .sidebar-nav-arrow.open { transform: rotate(90deg); }
    .sidebar-status {
      padding: 8px 12px 4px;
      font-size: 0.82em; color: #9ca3af;
      display: flex; flex-direction: column; gap: 2px;
    }

    /* ── MAIN CONTENT ── */
    .main-content {
      flex: 1;
      margin-left: 220px;
    }

    /* ── LAYOUT (container inside main-content) ── */
    .container { max-width: 940px; margin: 26px auto; padding: 0 18px 90px; }

    /* ── CARDS ── */
    .card { background: white; border-radius: 12px; padding: 22px 24px;
            margin-bottom: 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.07); }
    .card.is-not-retained {
      background: linear-gradient(180deg, #f8fafc, #f1f5f9);
      border: 1px solid #dbe4ee;
      box-shadow: 0 1px 5px rgba(15,23,42,0.05);
    }
    .card.is-not-retained .card-title {
      color: #64748b;
      border-bottom-color: #cbd5e1;
    }
    .card.is-not-retained .sdiv,
    .card.is-not-retained .upr,
    .card.is-not-retained .svc-info {
      color: #94a3b8;
    }
    .card.is-not-retained tbody tr:hover { background: transparent; }
    .card-title {
      font-size: 0.97em; font-weight: 700; color: #1a1a2e;
      padding-bottom: 11px; margin-bottom: 18px;
      border-bottom: 3px solid #f7941d;
      display: flex; align-items: center; gap: 10px;
    }
    .status-pill {
      margin-left: auto;
      font-size: 0.78em;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 4px 8px;
      border-radius: 999px;
      background: #e2e8f0;
      color: #64748b;
      display: none;
    }
    .card.is-not-retained .status-pill { display: inline-flex; align-items: center; }
    .badge {
      background: #f7941d; color: white;
      width: 25px; height: 25px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0; font-weight: 800; flex-shrink: 0;
      position: relative;
    }
    .badge::before {
      content: '';
      width: 9px; height: 9px; border-radius: 50%;
      background: #ffffff; display: block;
      box-shadow: 0 0 0 2px rgba(255,255,255,0.18);
    }

    /* ── GRIDS ── */
    .g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
    .g3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 13px; }
    .g4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 13px; }
    .span2 { grid-column: span 2; }
    .span3 { grid-column: span 3; }
    .span4 { grid-column: span 4; }

    /* ── FIELDS ── */
    .f { display: flex; flex-direction: column; gap: 4px; }
    .f label { font-size: 0.83em; font-weight: 600; color: #999;
               text-transform: uppercase; letter-spacing: 0.4px; }
    .f input, .f select, .f textarea {
      border: 1.5px solid #e0e0e0; border-radius: 7px;
      padding: 8px 11px; font-size: 0.91em; color: #2d3436;
      transition: border-color 0.18s, box-shadow 0.18s;
      font-family: inherit;
    }
    .f textarea {
      min-height: 96px;
      overflow: hidden;
      resize: vertical;
    }
    .f input:focus, .f select:focus, .f textarea:focus {
      outline: none; border-color: #f7941d;
      box-shadow: 0 0 0 3px rgba(247,148,29,0.14);
    }
    .f input[readonly] { background: #f5f5f5; color: #777; }

    /* ── TABLES ── */
    table { width: 100%; border-collapse: collapse; font-size: 0.97em; }
    thead th {
      background: #1a1a2e; color: white;
      padding: 10px 11px; text-align: left; font-size: 1em;
      font-weight: 700; letter-spacing: 0.2px;
    }
    thead th.rgt { text-align: right; }
    thead th:last-child { text-align: right; }
    tbody td { padding: 7px 11px; border-bottom: 1px solid #f0f0f0; vertical-align: middle; }
    tbody tr:hover { background: #fff8f0; }
    tbody td:last-child { text-align: right; font-weight: 600; color: #d4550a; }
    .upr { color: #aaa; font-size: 1.0em; text-align: right; white-space: nowrap; }
    .qin {
      width: 68px; border: 1.5px solid #ddd; border-radius: 5px;
      padding: 4px 7px; text-align: center; font-size: 0.98em;
    }

    /* ── PRICING TABLE FIXED COLUMN WIDTHS ── */
    /* Standard 4-col pricing tables: desc / unit price / qty / total */
    table.pricing-table { table-layout: fixed; }
    table.pricing-table .col-desc  { width: 42%; }
    table.pricing-table .col-price { width: 24%; white-space: nowrap; }
    table.pricing-table .col-qty   { width: 15%; white-space: nowrap; }
    table.pricing-table .col-total { width: 19%; }
    /* 5-col table (Pack Crédits has extra €/crédit col hidden in PDF)
       Column order: desc | €/crédit (extra, screen-only) | prix | qty | total
       So that prix unitaire / qty / total align with 4-col pricing-tables */
    table.pricing-table-5 { table-layout: fixed; }
    table.pricing-table-5 .col-desc  { width: 32%; }
    table.pricing-table-5 .col-unit  { width: 10%; white-space: nowrap; }
    table.pricing-table-5 .col-price { width: 24%; white-space: nowrap; }
    table.pricing-table-5 .col-qty   { width: 15%; white-space: nowrap; }
    table.pricing-table-5 .col-total { width: 19%; }
    /* Hébergement credits table: option / credit mensuel / qty / total credits */
    table.pricing-table-heb { table-layout: fixed; }
    table.pricing-table-heb .col-desc  { width: 42%; }
    table.pricing-table-heb .col-price { width: 24%; white-space: nowrap; }
    table.pricing-table-heb .col-qty   { width: 15%; white-space: nowrap; }
    table.pricing-table-heb .col-total { width: 19%; }
    .qin:focus { outline: none; border-color: #f7941d; }
    .num-col { white-space: nowrap; }
    .monthly-row td:first-child,
    .monthly-row .upr,
    .monthly-row td:last-child {
      color: #2a2f6e;
    }
    .monthly-row td:last-child {
      font-weight: 700;
    }
    .monthly-label {
      color: #2a2f6e;
      font-weight: 700;
    }

    /* ── SERVICES CHECKBOXES ── */
    .svc-list { display: flex; flex-direction: column; gap: 8px; }
    .svc-item {
      display: flex; align-items: flex-start; gap: 11px;
      padding: 11px 13px; border: 1.5px solid #eee;
      border-radius: 8px; cursor: pointer; transition: all 0.15s;
      user-select: none;
    }
    .svc-item:hover { border-color: #f7941d; background: #fff8f0; }
    .svc-item.checked { border-color: #f7941d; background: #fff8f0; }
    .svc-item input[type="checkbox"] {
      width: 17px; height: 17px; accent-color: #f7941d;
      margin-top: 2px; flex-shrink: 0;
    }
    .svc-name { font-weight: 600; font-size: 1.0em; }
    .svc-info { font-size: 0.86em; color: #aaa; margin-top: 2px; }

    /* ── CALC BOX ── */
    .calc-box {
      background: #eaf4fc; border: 1px solid #b3d7f0;
      border-radius: 8px; padding: 14px; margin-top: 14px;
    }
    .calc-box-title { font-size: 0.9em; font-weight: 700; color: #1a5f8a; margin-bottom: 10px; }
    .badge-orange {
      background: #f7941d; color: white;
      padding: 2px 8px; border-radius: 4px;
      font-weight: 700; font-size: 0.92em; display: inline-block;
    }
    .badge-blue-soft {
      background: #2563eb; color: white;
      padding: 2px 8px; border-radius: 4px;
      font-weight: 700; font-size: 0.92em; display: inline-block;
    }
    .mark-a { color: #f7941d; font-weight: 700; }
    .mark-b { color: #2563eb; font-weight: 700; }

    /* ── TOTAUX PANELS ── */
    .tp {
      border-radius: 10px; padding: 18px; color: white;
      -webkit-print-color-adjust: exact; print-color-adjust: exact;
    }
    .tp-dark  { background: linear-gradient(135deg, #1a1a2e, #2a2f6e); }
    .tp-blue  { background: linear-gradient(135deg, #1a2a3a, #1e4d7a); }
    .tp-green { background: linear-gradient(135deg, #1a3620, #2a6040); }
    .tline {
      display: flex; justify-content: space-between; align-items: center;
      padding: 5px 0; font-size: 0.98em;
    }
    .tline .lbl { opacity: 0.82; }
    .tline .val { font-weight: 600; min-width: 100px; text-align: right; }
    .tline.main {
      border-top: 1px solid rgba(255,255,255,0.2);
      margin-top: 7px; padding-top: 10px;
      font-size: 1.02em; font-weight: 700; color: #f7941d;
    }
    .tg3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 13px; margin-top: 14px; align-items: stretch; }
    .tg3 > div { display: flex; flex-direction: column; }
    .tp-label {
      font-size: 0.85em; font-weight: 700; color: #666;
      text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 8px; min-height: 2.4em;
    }
    .tp-mode { font-size: 0.82em; color: #999; margin-top: 5px; text-align: center; }
    .tg3 .tp { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }

    /* ── SEPA ── */
    .iban-main { font-family: monospace; letter-spacing: 3px; text-transform: uppercase; }

    /* ── NOTE BOX ── */
    .note-box {
      background: #fff8f0; border-left: 4px solid #f7941d;
      padding: 10px 14px; border-radius: 0 7px 7px 0;
      font-size: 0.92em; color: #7a4a00; margin-top: 14px;
    }
    .proposal-toolbar { display: grid; grid-template-columns: 1.1fr 1fr; gap: 10px; align-items: end; margin-top: 18px; }
    .proposal-topbar { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 12px; margin-bottom: 18px; }
    .proposal-list { width: 100%; margin-top: 14px; table-layout: fixed; }
    .proposal-list td:first-child, .proposal-list th:first-child { text-align: left; }
    .proposal-list td { vertical-align: middle; }
    .proposal-list th:last-child, .proposal-list td:last-child { width: 44%; }
    .proposal-actions { display: flex; gap: 5px; justify-content: flex-end; flex-wrap: nowrap; }
    .proposal-actions .btn { padding: 4px 7px; font-size: 0.75em; white-space: nowrap; }
    .hint { font-size: 0.87em; color: #7b8794; margin-top: 6px; }
    .status-msg { font-size: 0.92em; color: #15803d; min-height: 1.2em; }
    .status-msg.error { color: #b91c1c; }
    .import-grid { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: end; }
    .readonly-pill {
      display: inline-block; padding: 3px 8px; border-radius: 999px;
      background: #eef2ff; color: #3730a3; font-size: 0.85em; font-weight: 700;
    }
    .proposal-main { font-weight: 700; color: #1f2937; line-height: 1.2; }
    .proposal-meta { margin-top: 6px; font-size: 0.92em; color: #7b8794; line-height: 1.35; }
    .proposal-date { font-weight: 600; color: #334155; white-space: nowrap; }

    /* ── SECTION DIVIDER ── */
    .sdiv { font-size: 0.88em; font-weight: 700; color: #888;
            text-transform: uppercase; letter-spacing: 0.5px;
            margin: 16px 0 9px; }

    /* ── TABLET RESPONSIVE (768px – 1024px) ── */
    @media (max-width: 1024px) and (min-width: 768px) {
      .sidebar { width: 180px; }
      .topbar-left { width: 180px; }
      .topbar-right { width: 180px; }
      .main-content { margin-left: 180px; }
      .topbar-proposal-name { max-width: 160px; }

      .container { padding: 0 12px 60px; margin: 16px auto; }

      .g4 { grid-template-columns: 1fr 1fr; }
      .g3 { grid-template-columns: 1fr 1fr; }
      .tg3 { grid-template-columns: 1fr 1fr; gap: 10px; }
      .tg3 > div:last-child { grid-column: span 2; }

      .span4 { grid-column: span 2; }
      .span3 { grid-column: span 2; }

      .proposal-toolbar { grid-template-columns: 1fr; }
      .proposal-toolbar .f { min-width: unset; }

      table { font-size: 0.92em; }
      thead th, tbody td { padding: 6px 8px; }
      .qin { width: 56px; }

      .tline .val { min-width: 80px; }

      .card { padding: 16px 16px; }
    }

    /* ── HISTORY PANEL ── */
    .history-overlay {
      display: none; position: fixed; inset: 0; z-index: 900;
      background: rgba(0,0,0,0.45);
    }
    .history-overlay.open { display: block; }
    .history-panel {
      position: fixed; top: 0; right: -420px; width: 400px; height: 100vh;
      background: white; box-shadow: -4px 0 24px rgba(0,0,0,0.18);
      z-index: 901; display: flex; flex-direction: column;
      transition: right 0.28s cubic-bezier(.4,0,.2,1);
    }
    .history-panel.open { right: 0; }
    .history-panel-header {
      background: linear-gradient(135deg, #1a1a2e, #16213e);
      color: white; padding: 16px 18px;
      display: flex; align-items: center; justify-content: space-between;
      flex-shrink: 0;
    }
    .history-panel-header h2 { font-size: 1.1em; font-weight: 700; }
    .history-panel-header p { font-size: 0.85em; opacity: 0.65; margin-top: 2px; }
    .history-close-btn {
      background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
      color: white; border-radius: 6px; padding: 5px 11px; cursor: pointer;
      font-size: 0.95em; font-weight: 600; flex-shrink: 0;
    }
    .history-close-btn:hover { background: rgba(255,255,255,0.22); }
    .history-list {
      flex: 1; overflow-y: auto; padding: 10px 14px;
    }
    .history-empty {
      text-align: center; color: #94a3b8; font-size: 0.95em; padding: 40px 20px;
    }
    .history-item {
      border: 1.5px solid #e2e8f0; border-radius: 8px;
      padding: 11px 13px; margin-bottom: 8px;
      display: flex; flex-direction: column; gap: 5px;
    }
    .history-item-meta { font-size: 0.88em; color: #64748b; }
    .history-item-name { font-size: 0.98em; font-weight: 600; color: #1f2937; }
    .history-item-actions { display: flex; justify-content: flex-end; margin-top: 4px; }
    .btn-restore {
      background: #f7941d; color: white; border: none;
      border-radius: 6px; padding: 5px 13px; font-size: 0.9em;
      font-weight: 600; cursor: pointer; transition: background 0.15s;
    }
    .btn-restore:hover { background: #e08010; }
    .history-loading { text-align: center; color: #94a3b8; font-size: 0.95em; padding: 30px 20px; }
    .history-changed { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 5px; }
    .history-changed-badge { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe;
      border-radius: 4px; padding: 1px 6px; font-size: 0.82em; font-weight: 600; }

    /* ── FONT SIZE OVERRIDES FOR 7 TARGET CARDS (screen only) ── */
    @media screen {
      #card_sepa .card-title,
      #card_services .card-title,
      #card_credits .card-title,
      #card_prest .card-title,
      #card_hosting .card-title,
      #card_server .card-title,
      #card_sms .card-title { font-size: 0.97em; }

      #card_sepa .f label,
      #card_services .f label,
      #card_credits .f label,
      #card_prest .f label,
      #card_hosting .f label,
      #card_server .f label,
      #card_sms .f label { font-size: 0.75em; }

      #card_sepa .f input, #card_sepa .f select, #card_sepa .f textarea,
      #card_services .f input, #card_services .f select, #card_services .f textarea,
      #card_credits .f input, #card_credits .f select, #card_credits .f textarea,
      #card_prest .f input, #card_prest .f select, #card_prest .f textarea,
      #card_hosting .f input, #card_hosting .f select, #card_hosting .f textarea,
      #card_server .f input, #card_server .f select, #card_server .f textarea,
      #card_sms .f input, #card_sms .f select, #card_sms .f textarea { font-size: 0.92em; }

      #card_sepa table, #card_services table, #card_credits table,
      #card_prest table, #card_hosting table, #card_server table,
      #card_sms table { font-size: 0.88em; }

      #card_sepa thead th, #card_services thead th, #card_credits thead th,
      #card_prest thead th, #card_hosting thead th, #card_server thead th,
      #card_sms thead th { font-size: 1em; }

      #card_services .svc-name { font-size: 0.97em; }
      #card_services .svc-info { font-size: 0.78em; }

      #card_services .sdiv,
      #card_credits .sdiv,
      #card_prest .sdiv,
      #card_hosting .sdiv,
      #card_server .sdiv,
      #card_sms .sdiv { font-size: 0.80em; }
    }

    @media print {
      @page { margin: 12mm 15mm; size: A4; }
      body { background: white; font-size: 8.5pt; }
      .topbar, .sidebar, .btn, .save-msg, .pdf-loading { display: none !important; }
      .app-layout { margin-top: 0; }
      .main-content { margin-left: 0; }
      .container { max-width: 100%; margin: 0; padding: 0; }
      .card { box-shadow: none; border: 1px solid #ccc; margin-bottom: 8mm; break-inside: avoid; }
    }

    /* ══════════════════════════════════════════
       PDF CONTRACT TEMPLATE STYLES
    ══════════════════════════════════════════ */
    #pdf-template { display: none; }
    .pdf-wrap {
      font-family: Arial, sans-serif;
      font-size: 8.5pt;
      color: #000;
      background: white;
      width: 210mm;
      padding: 0;
    }
    .pdf-page { padding: 8mm; height: 297mm; overflow: hidden; box-sizing: border-box; }
    .ct { width: 100%; border-collapse: collapse; margin-bottom: 4px; font-size: 8pt; table-layout: fixed; }
    .ct td, .ct th { padding: 3px 5px; border: 0.5px solid #bbb; vertical-align: middle; background: #f0f0f0; color: #000 !important; text-align: left !important; }
    .ct .bd  { background: #ffffff; font-weight: 700; color: #000 !important; text-align: left !important; }
    .ct .hd  { background: #666666; color: white !important; font-weight: 700; font-size: 6.5pt; border-color: #666666; text-align: left !important; white-space: nowrap; }
    .ct .hor { background: #f7941d; color: white !important; font-weight: 700; font-size: 6.5pt; border-color: #f7941d; white-space: nowrap; }
    .ct .hl  { background: #DBF6FE; font-weight: 700; color: #0a4a6b !important; }
    .ct .ctr { text-align: center !important; }
    .ct .rgt { text-align: right !important; }
    .ct .gry { background: #f0f0f0; }
    .ct .salmon { background: #ffc0b3; }
    .ct .white { background: #ffffff; font-weight: 400; }
    .ct .bluefill { background: #bfe8f4; }
    .ct .yellow { background: #ffe066; }
    .ct .mark { color: #ff5a2a !important; }
    .ct .svc-choice { font-size: 15pt; line-height: 1; }
  