.link-button {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dae2ef;
  border-radius: 10px;
  padding: 9px 14px;
  background: #eef2fa;
  color: #15213b;
  font-weight: 650;
  text-decoration: none;
}

.loop-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
  padding: 14px;
  border: 1px solid #dce5f2;
  border-radius: 12px;
}

.loop-item strong,
.loop-item small {
  display: block;
}

.loop-item small {
  margin-top: 3px;
  color: #64748b;
}

.loop-item.ready {
  border-color: #8fd1aa;
  background: #f4fcf7;
}

.loop-item.blocked {
  border-color: #efb4b4;
  background: #fff7f7;
}

@media (max-width: 720px) {
  .loop-item {
    grid-template-columns: 1fr;
  }
}
