/* CSV Column Display — default table styling.
   Kept intentionally light so themes can override it with their own
   (higher-specificity) rules. The table carries the .csvcd-table class. */
.csvcd-table {
  width: 100%;
  border-collapse: collapse;
  font: 14px/1.4 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.csvcd-table th,
.csvcd-table td {
  border: 1px solid #ddd;
  padding: 6px 8px;
  text-align: left;
}

.csvcd-table th {
  background: #f7f7f7;
  font-weight: 600;
}
