.adv-rider-list {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}

.adv-rider-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  gap: 8px;
  align-items: center;
}

.adv-rider-taken {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  cursor: pointer;
}

.adv-rider-taken-input {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
}

.adv-rider-remove {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #64748b;
  font-size: 20px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.adv-rider-remove:hover {
  color: #b91c1c;
  background: #fef2f2;
}

.adv-rider-add-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.adv-rider-text {
  min-width: 0;
}

.adv-rider-readonly-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.adv-rider-readonly-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
