/* Page-specific layout for waiver-wire.html */

.waiver-columns {
  max-width: var(--content-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
}

@media (min-width: 800px) {
  .waiver-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.waiver-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.waiver-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
}

.waiver-rank {
  font-size: 0.72rem;
  font-weight: bold;
  color: var(--text-muted);
  min-width: 18px;
}

.waiver-name-block {
  flex: 1;
  min-width: 0;
}

.waiver-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.waiver-team {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.waiver-owner {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 1px;
}

.waiver-owner.is-available {
  color: var(--highlight-border);
  font-weight: bold;
}

.waiver-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-shrink: 0;
  white-space: nowrap;
}
