.roapp-form {
  max-width: 620px;
  padding: 24px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
}
.roapp-form label {
  display: block;
  margin-top: 14px;
  font-weight: 600;
}
.roapp-form input,
.roapp-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #bbb;
  border-radius: 4px;
}
.roapp-form textarea {
  min-height: 90px;
}
.roapp-form .inline {
  display: flex;
  gap: 8px;
  align-items: center;
}
.roapp-form .inline input {
  width: auto;
}
.roapp-form button {
  margin-top: 18px;
  margin-right: 8px;
  padding: 10px 16px;
  cursor: pointer;
}
.roapp-form .step {
  display: none;
}
.roapp-form .step.active {
  display: block;
}
.status,
.result {
  margin-top: 12px;
  padding: 10px;
  border-radius: 4px;
}
.ok { background: #e8f7e8; }
.warn { background: #fff6d8; }
.error { background: #ffe4e4; }
.loading { background: #e8f0ff; }
.roapp-clock-input {
  cursor: pointer;
}

.roapp-new-client-confirmation {
  margin: 18px 0;
  padding: 14px;
  border: 1px solid #d7d7d7;
  border-radius: 6px;
  background: #fafafa;
}

.roapp-new-client-confirmation[hidden] {
  display: none !important;
}

.roapp-new-client-confirmation-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
}

.roapp-new-client-confirmation-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.roapp-clock-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
}

.roapp-clock-dialog {
  width: min(360px, 100%);
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.roapp-clock-display {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 40px;
  font-weight: 700;
}

.roapp-clock-display button,
.roapp-clock-actions button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.roapp-clock-display button {
  padding: 4px 8px;
  border-radius: 8px;
  font: inherit;
  color: #555;
}

.roapp-clock-display button.active {
  color: #111;
  background: #ffc300;
}

.roapp-clock-face {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
  border-radius: 50%;
  background: #f2f2f2;
}

.roapp-clock-number {
  position: absolute;
  z-index: 2;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
  cursor: pointer;
  font-size: 13px;
}

.roapp-clock-number:hover,
.roapp-clock-number.selected {
  color: #111;
  background: #ffc300;
}

.roapp-clock-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffc300;
  transform: translate(-50%, -50%);
}

.roapp-clock-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
}

.roapp-clock-actions button {
  padding: 9px 12px;
  color: #222;
  font-weight: 600;
}

.roapp-client-field-invalid {
  border-color: #d63638 !important;
  box-shadow: 0 0 0 1px #d63638 !important;
}

.roapp-client-field-error {
  margin-top: 6px;
  color: #d63638;
  font-size: 13px;
  line-height: 1.4;
}

.roapp-time-selection-disabled #time-1.forminator-field-text,
.roapp-time-field-hidden {
  display: none !important;
}

.roapp-new-client-page-skipped {
  visibility: hidden !important;
  pointer-events: none !important;
}

/*
 * The amount field (select-3) keeps every volume as an <option> so the select2
 * widget and its validation stay in sync; the plugin disables the volumes that
 * do not apply to the chosen sewage type. select2 only greys disabled options,
 * so hide them from this field's dropdown here. Scoped by the results list id,
 * which embeds the select id (…field--select-3…), so no other field is
 * affected. The selected value display is unaffected.
 */
ul[id*="field--select-3"] .select2-results__option[aria-disabled="true"],
ul[id*="field--select-3"] .select2-results__option--disabled {
  display: none !important;
}
.roapp-check-client,
#check-client-btn {
  display: none !important;
}
