.report-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 20px;
      transition: all 0.2s ease;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .report-card:hover {
      box-shadow: 0 8px 24px rgba(0,0,0,.1);
      transform: translateY(-2px);
      border-color: var(--accent);
    }
    .report-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
    }
    .report-title {
      font-size: 16px;
      font-weight: 600;
      color: var(--text);
      margin: 0;
      flex: 1;
      line-height: 1.4;
    }
    .report-category {
      font-size: 11px;
      padding: 4px 10px;
      border-radius: 999px;
      background: var(--chip-bg);
      border: 1px solid var(--border);
      color: var(--muted);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      white-space: nowrap;
    }
    .report-description {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
      margin: 0;
    }
    .report-metrics {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 8px;
    }
    .metric {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .metric-label {
      font-size: 11px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 600;
    }
    .metric-value {
      font-size: 20px;
      font-weight: 600;
      color: var(--text);
      font-variant-numeric: tabular-nums;
      line-height: 1.2;
    }
    .metric-change {
      font-size: 12px;
      color: var(--accent);
      font-weight: 600;
      line-height: 1.3;
    }
    .metric-change.negative {
      color: var(--danger);
      font-weight: 600;
    }
    .report-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 12px;
      border-top: 1px solid var(--border);
      margin-top: 4px;
    }
    .report-updated {
      font-size: 12px;
      color: var(--muted);
      font-weight: 500;
    }
    .report-actions {
      display: flex;
      gap: 8px;
    }
    .report-action-btn {
      padding: 8px 14px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--card);
      color: var(--text);
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .report-action-btn:hover {
      background: var(--chip-bg);
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-1px);
    }

    .report-template-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 20px;
    }
    .template-item {
      padding: 12px 16px;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: #ffffff;
      cursor: pointer;
      transition: all 0.2s;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .light .template-item {
      background: #ffffff;
    }
    .template-item:hover {
      background: var(--chip-bg);
      border-color: var(--accent);
    }
    .template-info {
      flex: 1;
    }
    .template-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 4px;
      line-height: 1.4;
    }
    .template-desc {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.5;
    }
    .template-add-btn {
      padding: 8px 16px;
      border: 1px solid var(--accent);
      border-radius: var(--radius);
      background: var(--accent);
      color: white;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s ease;
      white-space: nowrap;
    }
    .template-add-btn:hover:not(.disabled) {
      background: var(--accent-2);
      border-color: var(--accent-2);
      transform: translateY(-1px);
    }
    .template-add-btn.disabled {
      background: var(--chip-bg);
      border-color: var(--border);
      color: var(--muted);
      cursor: not-allowed;
      opacity: 0.8;
    }
    .template-item.added {
      opacity: 0.7;
    }