/* Resolve Broker Dispute — extends for-businesses guide layout */

.forbiz-page .fb-table-wrap {
  overflow-x: auto;
  margin: 24px 0 32px;
  border-radius: var(--fb-radius-lg);
  border: 1px solid var(--fb-border);
  box-shadow: var(--fb-shadow-sm);
}

.forbiz-page .fb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--fb-bg-card);
}

.forbiz-page .fb-table th,
.forbiz-page .fb-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--fb-border);
  vertical-align: top;
}

.forbiz-page .fb-table th {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fb-text-soft);
  background: var(--fb-surface);
}

.forbiz-page .fb-table tr:last-child td {
  border-bottom: none;
}

.forbiz-page .fb-table tbody tr:hover td {
  background: var(--fb-bg-hover);
}

.forbiz-page .fb-table a {
  color: var(--fb-primary);
  font-weight: 600;
  text-decoration: none;
}

.forbiz-page .fb-table a:hover {
  text-decoration: underline;
}

.forbiz-page .fb-tier {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.forbiz-page .fb-tier::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

.forbiz-page .fb-tier--1::before {
  background: #059669;
}

.forbiz-page .fb-tier--2::before {
  background: #d97706;
}

.forbiz-page .fb-tier--3::before {
  background: #dc2626;
}

.forbiz-page .fb-tier--none::before {
  background: #6b7280;
}

.forbiz-page .fb-tier-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin: 20px 0 8px;
  font-size: 13px;
  color: var(--fb-text-muted);
}

.forbiz-page .fb-list--bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.forbiz-page .fb-list--bullets li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--fb-text-muted);
  line-height: 1.7;
}

.forbiz-page .fb-list--bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fb-primary);
}

.forbiz-page .fb-list--bullets strong {
  color: var(--fb-text);
}

.forbiz-page .fb-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  counter-reset: dispute-step;
}

.forbiz-page .fb-steps li {
  counter-increment: dispute-step;
  margin-bottom: 24px;
  padding: 24px;
  background: var(--fb-bg-card);
  border-radius: var(--fb-radius-lg);
  border: 1px solid var(--fb-border);
  box-shadow: var(--fb-shadow-sm);
}

.forbiz-page .fb-steps li h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--fb-text);
  margin: 0 0 12px;
}

.forbiz-page .fb-steps li h3::before {
  content: counter(dispute-step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: var(--fb-primary);
  border-radius: var(--fb-radius-sm);
  box-shadow: 0 4px 12px rgba(255, 0, 60, 0.2);
}

.forbiz-page .fb-steps li p {
  margin: 0;
  font-size: 15px;
  color: var(--fb-text-muted);
  line-height: 1.75;
}

.forbiz-page .fb-callout--warning {
  border-left-color: #d97706;
  background: #fffbeb;
}

.forbiz-page .fb-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 4px;
  align-items: center;
  margin-top: 24px;
  font-size: 14px;
}

.forbiz-page .fb-related-links span {
  color: var(--fb-text-soft);
}

@media (max-width: 575px) {
  .forbiz-page .fb-table th,
  .forbiz-page .fb-table td {
    padding: 10px 12px;
    font-size: 13px;
  }

  .forbiz-page .fb-tier-legend {
    flex-direction: column;
    gap: 10px;
  }
}
