/**
 * Corporation Tax Calculator - Specific Styles
 * Tax bands table only — effective rate + all other styles in shared/css/base.css
 */

@import url('../../../../shared/css/base.css');

/* Tax Bands Table (in explanation section) */
.tax-bands-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--wpc-space-md) 0;
}

.tax-bands-table th,
.tax-bands-table td {
  padding: var(--wpc-space-sm) var(--wpc-space-md);
  text-align: left;
  border-bottom: 1px solid var(--wpc-border-light);
}

.tax-bands-table th {
  font-weight: 600;
  color: var(--wpc-accent);
  font-size: 0.875rem;
  border-bottom: 2px solid var(--wpc-accent);
}

.tax-bands-table td {
  color: var(--wpc-text-secondary);
  font-size: 0.9375rem;
}

.tax-bands-table tr:nth-child(even) td {
  background: var(--wpc-surface-warm);
}

.tax-bands-table td:last-child {
  text-align: right;
  font-weight: 600;
  font-feature-settings: "tnum";
}
