/* Repeatable page-group UI (only rendered when feature is enabled). */
.fm-repeatable-ui {
  margin: 12px 0 16px;
  padding: 12px;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  background: #fafafa;
  box-sizing: border-box;
  width: 100%;
}

.fm-repeatable-heading {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.05em;
}

.fm-repeatable-list {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
}

.fm-repeatable-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #e2e2e2;
}

.fm-repeatable-list-title {
  font-weight: 600;
}

.fm-repeatable-item-remove {
  cursor: pointer;
  flex-shrink: 0;
}

.fm-repeatable-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.fm-repeatable-actions .button,
.fm-repeatable-actions button {
  cursor: pointer;
}

.fm-repeatable-actions button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
