.str { max-width: 860px; }
.str-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.str-tab {
  padding: 8px 12px; font-size: 13px; font-weight: 700; border: 1px solid #d9e0d4; border-radius: 6px;
  background: #fff; cursor: pointer; color: #27331f;
}
.str-tab-active { background: #19616a; border-color: #19616a; color: #fff; }
.str-panel { display: flex; flex-direction: column; gap: 12px; }
.str-panel label { display: flex; flex-direction: column; gap: 4px; font-size: 13px; font-weight: 700; color: #27331f; }
.str-panel input { padding: 9px 11px; font-size: 14.5px; border: 1px solid #d9e0d4; border-radius: 6px; font-family: inherit; }
.str-panel input:focus { outline: 2px solid #19616a; outline-offset: 1px; }

.str-search-row { display: flex; flex-direction: column; gap: 4px; }
.str-count { font-size: 12.5px; color: #5b6b56; margin: 0; }

.str-table { display: flex; flex-direction: column; gap: 8px; }
.str-head-row {
  display: grid; grid-template-columns: 1.3fr 0.6fr 2.4fr; gap: 10px; padding: 8px 12px;
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: #5b6b56;
}
.str-row {
  display: grid; grid-template-columns: 1.3fr 0.6fr 2.4fr; gap: 10px; align-items: start;
  padding: 10px 12px; background: #f3f4f8; border: 1px solid #d9e0d4; border-radius: 6px;
}
.str-row .str-col-primary { font-weight: 700; color: #19616a; font-size: 13.5px; }
.str-row .str-col-count { font-size: 13px; color: #27331f; font-family: ui-monospace, monospace; font-weight: 700; }
.str-row .str-col { font-size: 13px; color: #27331f; }
.str-empty { padding: 14px 12px; font-size: 13px; color: #5b6b56; background: #f3f4f8; border: 1px dashed #d9e0d4; border-radius: 6px; }

.str-total-row {
  display: flex; justify-content: space-between; align-items: center; padding: 10px 12px;
  background: #eef3ec; border: 1px solid #d9e0d4; border-radius: 6px; font-size: 13px; font-weight: 700; color: #27331f;
}
.str-total-row strong { color: #19616a; font-size: 15px; }

.str-section-title { font-size: 14px; font-weight: 700; color: #27331f; margin: 6px 0 -4px; }
.str-body-text { font-size: 13.5px; line-height: 1.55; color: #27331f; margin: 0; }
.str-body-text + .str-body-text { margin-top: -4px; }

.str-fields-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 4px 0;
}
.str-field-card {
  padding: 10px 12px; background: #f3f4f8; border: 1px solid #d9e0d4; border-radius: 6px;
  display: flex; flex-direction: column; gap: 4px;
}
.str-field-card span { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; color: #5b6b56; }
.str-field-card strong { font-size: 14px; color: #19616a; }
.str-field-card p { margin: 0; font-size: 12.5px; color: #27331f; }

.str-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.str-steps li {
  display: flex; gap: 10px; padding: 10px 12px; background: #f3f4f8; border: 1px solid #d9e0d4; border-radius: 6px;
  font-size: 13px; color: #27331f; line-height: 1.5;
}
.str-step-num {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: #19616a; color: #fff;
  font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}

.str-cta {
  padding: 12px 14px; background: #eef3ec; border: 1px solid #19616a; border-radius: 6px;
  font-size: 13.5px; color: #27331f; line-height: 1.55;
}
.str-cta strong { color: #19616a; }

.str-note { margin-top: 16px; font-size: 13px; color: #5b6b56; }
.str-hint { font-size: 12.5px; color: #5b6b56; margin: 4px 0 0; }

@media (max-width: 720px) {
  .str-head-row { display: none; }
  .str-row { grid-template-columns: 1fr !important; gap: 4px; }
  .str-row .str-col::before,
  .str-row .str-col-count::before {
    content: attr(data-label); display: block; font-size: 10.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.02em; color: #5b6b56; margin-bottom: 1px;
  }
}

@media (max-width: 480px) {
  .str-fields-grid { grid-template-columns: 1fr; }
}
