.text-suptitle {
  margin: 10px 0;
  font-size: 18px;
  font-weight: bold;
}
.text-subtitle {
  margin: 10px 0;
  font-size: 16px;
  position: relative;

  display: flex;
  align-items: center;
  gap: 5px;
  --dot-color: #007bff;
}
.text-subtitle::before {
  content: "";
  display: block;
  width: 4px;
  height: 1em;
  background-color: var(--dot-color);
}

.form-grid {
  --grid-gap: 20px;
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(calc(33% - var(--grid-gap)), 1fr)
  );
  grid-auto-rows: auto;
  gap: var(--grid-gap);
}

.form-grid-item {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
.form-grid-item.full-row {
  grid-column: -1 / 1;
}
.form-grid-item.column {
  flex-direction: column;
  align-items: flex-start;
}

.form-grid-label {
  flex: none;
  margin: 0;
}
.form-grid-label::after {
  content: ":";
  display: "inline";
}

.form-grid-value {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #000;
}

.text-link {
  cursor: pointer;
  color: blue;
}
.text-link:not(.loading):hover {
  text-decoration: underline;
}
.text-link.loading {
  cursor: not-allowed;
  color: gray;
}
.text-link.loading::after {
  content: "...";
}
