/* Backlink Tools - anchor bars, link-juice cards, outreach forms */

.bl-form { display: flex; flex-direction: column; gap: 14px; }
.bl-help { font-size: .8125rem; color: var(--color-text-muted); margin: 8px 0 0; }

/* Anchor distribution table */
.bl-bars { display: flex; flex-direction: column; gap: 8px; }
.bl-bar-row { display: grid; grid-template-columns: 120px 1fr 110px 90px 110px; gap: 10px; align-items: center; }
.bl-bar-label { font-size: .8125rem; font-weight: 700; }
.bl-bar-track { height: 18px; background: var(--color-bg); border-radius: 4px; overflow: hidden; }
.bl-bar-fill { height: 100%; transition: width .2s ease; }
.bl-bar-val { font-size: .8125rem; }
.bl-bar-ideal { font-size: .75rem; color: var(--color-text-muted); }
.bl-bar-status { font-size: .75rem; }

@media (max-width: 767.98px) {
    .bl-bar-row { grid-template-columns: 1fr; gap: 4px; }
    .bl-bar-track { order: 5; }
}
