    /* ── Export Progress Modal ────────────────────────────── */
    .export-progress-title {
      font-size: 1rem;
      font-weight: 600;
      color: var(--clr-dark);
      margin-bottom: 18px;
    }
    .export-progress-track {
      background: #dfe6e9;
      border-radius: 8px;
      height: 10px;
      overflow: hidden;
      margin-bottom: 10px;
    }
    .export-progress-fill {
      height: 100%;
      background: var(--clr-primary);
      border-radius: 8px;
      width: 0%;
      transition: width 0.35s ease;
    }
    .export-progress-label {
      font-size: .85rem;
      color: #636e72;
    }
    .export-download-btn {
      display: inline-block;
      margin-top: 18px;
      padding: 9px 24px;
      background: var(--clr-primary);
      color: var(--clr-white);
      border: none;
      border-radius: var(--radius);
      font-size: .9rem;
      font-weight: 600;
      cursor: pointer;
      transition: filter .15s;
    }
    .export-download-btn:hover { filter: brightness(1.1); }
