.export-card {
      background: var(--theme-card-bg, #fff);
      border: 1px solid var(--theme-card-border, #e2e8f0);
      border-radius: 10px;
      padding: 32px;
      box-shadow: var(--theme-card-shadow, 0 1px 3px rgba(0,0,0,0.06));
    }
    .export-card h3 {
      font-size: 16px;
      font-weight: 600;
      color: var(--theme-text-heading, #0d1b2a);
      margin-bottom: 20px;
    }
    .export-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 16px;
    }
    .export-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 16px;
      background: var(--theme-bg-alt, #f8fafc);
      border-radius: 8px;
      border: 1px solid var(--theme-border-light, #f1f5f9);
    }
    .export-item-label {
      font-size: 14px;
      font-weight: 500;
      color: var(--theme-text-primary, #334155);
    }
    .export-item-actions { display: flex; gap: 6px; }
    .export-item-actions button {
      padding: 5px 12px;
      border: 1px solid var(--theme-border, #e2e8f0);
      background: var(--theme-card-bg, #fff);
      color: var(--theme-text-primary, #334155);
      border-radius: 6px;
      font-size: 12px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.15s;
    }
    .export-item-actions button:hover {
      border-color: var(--theme-primary, #c8963e);
      color: var(--theme-primary, #c8963e);
    }
    .export-row {
      display: flex;
      justify-content: flex-end;
      margin-top: 16px;
    }
    .gauge-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-bottom: 24px;
    }
    @media (max-width: 640px) {
      .gauge-row { grid-template-columns: 1fr; }
    }
    .status-badge {
      display: inline-block;
      padding: 2px 10px;
      border-radius: 10px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.3px;
    }
    .badge-green { background: rgba(34,197,94,0.15); color: #22c55e; }
    .badge-gold { background: rgba(200,150,62,0.15); color: #c8963e; }
    .badge-amber { background: rgba(245,158,11,0.15); color: #f59e0b; }
    .badge-blue { background: rgba(59,130,246,0.15); color: #3b82f6; }
    .badge-red { background: rgba(239,68,68,0.15); color: #ef4444; }
    .badge-slate { background: rgba(148,163,184,0.15); color: #94a3b8; }
