/* === SOTO PRACTITIONER FORM === */

.soto-practitioner-form {
  max-width: 1100px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

.soto-practitioner-form h3 {
  background: #6aa84f;
  color: #fff;
  padding: 14px 18px;
  margin: 40px 0 0;
  font-size: 16px;
  border-radius: 4px 4px 0 0;
}

.soto-panel {
  background: #eef1f1;
  padding: 24px;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.soto-row {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.soto-row.one   { grid-template-columns: 1fr; }
.soto-row.two   { grid-template-columns: repeat(2, 1fr); }
.soto-row.three { grid-template-columns: repeat(3, 1fr); }
.soto-row.five  { grid-template-columns: repeat(5, 1fr); }

.soto-field label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.soto-field label span {
  color: red;
}

.soto-field input,
.soto-field select {
  width: 100%;
  padding: 11px 12px;
  background: #e7e7e7;
  border: 1px solid #7fb069;
  border-radius: 4px;
}

.education-row {
  margin-bottom: 18px;
}

.soto-add-row {
  background: #6aa84f;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
}

.soto-add-row:hover {
  background: #5b9444;
}

@media (max-width: 768px) {
  .soto-row.one,
  .soto-row.two,
  .soto-row.three,
  .soto-row.five {
    grid-template-columns: 1fr;
  }
}


/* === SOT USAGE TABLE STYLE === */

.sot-usage-panel {
  padding: 0;
}

.sot-usage-header,
.sot-usage-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: center;
  padding: 14px 18px;
}

.sot-usage-header {
  font-weight: bold;
  background: #e0e5e5;
}

.sot-usage-row {
  border-top: 1px solid #b9c2c2;
}

.sot-usage-row .label {
  font-size: 14px;
}

.sot-usage-row input[type="radio"] {
  transform: scale(1.1);
}

/* Certification row spacing */
.sot-cert-row {
  padding: 24px 18px;
  border-top: 1px solid #b9c2c2;
}

/* Mobile */
@media (max-width: 768px) {
  .sot-usage-header {
    display: none;
  }

  .sot-usage-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sot-usage-row label {
    display: inline-block;
    margin-right: 16px;
  }
}


.soto-helper-text {
  color: #5c8f3b;
  margin-bottom: 18px;
  font-size: 14px;
}


/* === SOT HISTORY TABLE === */

.sot-history-panel {
  padding: 0;
}

/* Header row */
.sot-history-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  background: #7f8c8d;
  color: #fff;
  padding: 14px 18px;
  font-size: 14px;
}

/* Data rows */
.sot-history-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 14px;
  padding: 18px;
  border-top: 1px solid #b9c2c2;
  align-items: center;
}

.sot-history-row .label {
  font-size: 14px;
}

/* Advanced modules row */
.sot-history-row.advanced {
  grid-template-columns: 2fr 3fr;
}

/* Inputs */
.sot-history-row input {
  width: 100%;
}

/* Mobile */
@media (max-width: 768px) {
  .sot-history-header {
    display: none;
  }

  .sot-history-row {
    grid-template-columns: 1fr;
  }

  .sot-history-row.advanced {
    grid-template-columns: 1fr;
  }
}


/* === MEMBERSHIP OPTIONS === */

.membership-options-panel {
  padding: 24px;
}

.membership-helper {
  color: #5c8f3b;
  font-size: 15px;
  margin-bottom: 16px;
}

.membership-helper span {
  color: red;
}

.membership-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  cursor: pointer;
}

.membership-option input[type="radio"] {
  margin-top: 4px;
  transform: scale(1.1);
}

.membership-option span {
  line-height: 1.4;
}
