/* Public clubhouse request form. Builds on the member theme tokens and reuses
   the member app's card and form classes; this file only adds the few pieces
   the member shell does not already style: page heading, the rate guide list,
   the side-by-side time row, and select and textarea inputs. */

.page-title {
  font-size: 1.4rem;
  margin: 4px 0 6px;
}

.rate-list {
  margin: 8px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
}

.rate-list dt {
  font-weight: 700;
  color: var(--hc-water);
}

.rate-list dd {
  margin: 0;
}

.time-row {
  display: flex;
  gap: 12px;
}

.time-row .field {
  flex: 1;
}

.account-panel textarea,
.account-panel select {
  border: 1px solid var(--hc-line);
  border-radius: 8px;
  padding: 10px;
  font: inherit;
  width: 100%;
  box-sizing: border-box;
}

.account-panel textarea:focus-visible,
.account-panel select:focus-visible {
  outline: 3px solid var(--hc-water);
  outline-offset: 1px;
}
