/* Sales Tax Calculator Styles - Exact Calculator.net / Calculator Archive Clone */

.stc-page-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 12px 15px 40px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333333;
  box-sizing: border-box;
}

/* Top Utility Bar */
.stc-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}

.stc-breadcrumbs {
  color: #0844a4;
}

.stc-breadcrumbs a {
  color: #0844a4;
  text-decoration: none;
}

.stc-breadcrumbs a:hover {
  text-decoration: underline;
}

.stc-breadcrumbs .sep {
  color: #666666;
  margin: 0 4px;
}

.stc-breadcrumbs .current {
  color: #333333;
}

.stc-top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stc-top-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  font-family: inherit;
  color: #0844a4;
  cursor: pointer;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.stc-top-btn:hover {
  color: #002266;
}

.stc-badge-btn {
  background: #f4f6f8;
  border: 1px solid #b5c7d8;
  color: #003366;
  font-size: 11.5px;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.stc-badge-btn:hover {
  background: #e2eaf2;
}

/* Page Title & Intro */
.stc-page-title {
  font-size: 24px;
  font-weight: bold;
  color: #003366;
  margin: 0 0 8px 0;
}

.stc-intro-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: #222222;
  margin-bottom: 16px;
  max-width: 960px;
}

.stc-intro-text a {
  color: #0844a4;
  text-decoration: underline;
}

/* Main Two-Column Layout */
.stc-main-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.stc-content-col {
  flex: 1;
  min-width: 0;
}

.stc-sidebar-col {
  width: 280px;
  flex-shrink: 0;
}

/* Calculator Row: Form & Results */
.stc-calc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

/* Form Container */
.stc-form-container {
  flex: 1;
  min-width: 320px;
  max-width: 440px;
}

.stc-form-box {
  background-color: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 16px 18px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.stc-form-table {
  width: 100%;
  border-collapse: collapse;
}

.stc-form-table td {
  padding: 7px 4px;
  vertical-align: middle;
  font-size: 13px;
}

.stc-form-table td:first-child {
  width: 45%;
  color: #222;
  font-weight: 500;
}

.stc-input-group {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #94a3b8;
  border-radius: 3px;
  padding: 0 4px;
  width: 100%;
  max-width: 170px;
  height: 28px;
  box-sizing: border-box;
}

.stc-input-group:focus-within {
  border-color: #2563eb;
  outline: 1px solid #2563eb;
}

.stc-input-symbol, .stc-input-unit {
  font-size: 13px;
  color: #555555;
  user-select: none;
  padding: 0 2px;
}

.stc-input {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 13px;
  font-family: Arial, sans-serif;
  padding: 2px 4px;
  text-align: right;
  outline: none;
  color: #111111;
}

.stc-input::placeholder {
  color: #94a3b8;
}

.stc-help-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #cbd5e1;
  color: #334155;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  line-height: 14px;
  margin-left: 4px;
  cursor: help;
}

.stc-calc-hint {
  font-size: 11px;
  color: #64748b;
  margin-top: 2px;
  display: block;
}

/* Button Row */
.stc-btn-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-left: 45%;
}

.stc-btn-calculate {
  background-color: #4c7a34;
  color: #ffffff;
  border: 1px solid #3c6528;
  border-radius: 3px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.stc-btn-calculate:hover {
  background-color: #40682b;
}

.stc-btn-calculate:active {
  background-color: #335422;
}

.stc-btn-clear {
  background-color: #e2e8f0;
  color: #334155;
  border: 1px solid #cbd5e1;
  border-radius: 3px;
  padding: 5px 12px;
  font-size: 13px;
  cursor: pointer;
}

.stc-btn-clear:hover {
  background-color: #cbd5e1;
}

/* Results Container */
.stc-results-container {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.stc-results-header {
  background: #2e7d32;
  color: #ffffff;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
}

.stc-save-btn {
  background: #ffffff;
  color: #2e7d32;
  border: 1px solid #ffffff;
  border-radius: 3px;
  padding: 3px 8px;
  font-size: 11.5px;
  font-weight: bold;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.stc-save-btn:hover {
  background: #f1f8e9;
}

.stc-results-body {
  padding: 14px;
}

.stc-breakdown-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 16px;
}

.stc-breakdown-table td {
  padding: 6px 4px;
}

.stc-breakdown-table td.label {
  color: #475569;
  width: 55%;
}

.stc-breakdown-table td.val {
  text-align: right;
  font-weight: bold;
  color: #1e293b;
}

.stc-breakdown-table tr.highlight-row {
  background: #f0fdf4;
  border-top: 1px solid #bbf7d0;
  border-bottom: 1px solid #bbf7d0;
}

.stc-breakdown-table tr.highlight-row td.val {
  color: #15803d;
  font-size: 14px;
}

/* Charts in Results */
.stc-charts-grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.stc-chart-box {
  flex: 1;
  min-width: 180px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 10px;
  text-align: center;
}

.stc-chart-title {
  font-size: 12px;
  font-weight: bold;
  color: #334155;
  margin-bottom: 8px;
}

.stc-donut-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stc-legend {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11.5px;
  text-align: left;
  width: 100%;
}

.stc-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #475569;
}

.stc-legend-box {
  width: 11px;
  height: 11px;
  border-radius: 2px;
  flex-shrink: 0;
}

.stc-legend-box.pretax { background: #0284c7; }
.stc-legend-box.tax { background: #f59e0b; }
.stc-legend-box.total { background: #10b981; }

/* Visual Number Line Representation */
.stc-number-line-wrap {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed #cbd5e1;
}

.stc-number-line-title {
  font-size: 12px;
  font-weight: bold;
  color: #334155;
  margin-bottom: 6px;
  text-align: left;
}

.stc-number-line-bar {
  display: flex;
  height: 20px;
  border-radius: 3px;
  overflow: hidden;
  font-size: 10px;
  font-weight: bold;
  color: #ffffff;
  line-height: 20px;
  text-align: center;
}

.stc-bar-pretax {
  background: #0284c7;
  transition: width 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 4px;
}

.stc-bar-tax {
  background: #f59e0b;
  transition: width 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 4px;
}

.stc-number-line-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #64748b;
  margin-top: 4px;
}

/* Fraction Arithmetic & Tax Ratio Tool (Requirements 1 & 5) */
.stc-fraction-box {
  background: #f8fafc;
  border: 1px solid #b5c7d8;
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 24px;
}

.stc-fraction-header {
  font-size: 16px;
  font-weight: bold;
  color: #003366;
  margin-bottom: 6px;
}

.stc-fraction-desc {
  font-size: 12.5px;
  color: #475569;
  line-height: 1.4;
  margin-bottom: 12px;
}

.stc-fraction-ratios-card {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 10px 14px;
  margin-bottom: 14px;
}

.stc-fraction-ratio-item {
  flex: 1;
  min-width: 180px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: #334155;
}

.stc-ratio-pill {
  background: #e0f2fe;
  color: #0369a1;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 12px;
  font-family: monospace;
  font-size: 12px;
}

.stc-fraction-calc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  background: #ffffff;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
}

.fraction-stacked-input {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 60px;
}

.fraction-stacked-input input {
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  padding: 3px 2px;
  border: 1px solid #94a3b8;
  border-radius: 3px;
  background: #f8fafc;
}

.fraction-stacked-input input:focus {
  border-color: #2563eb;
  outline: none;
  background: #ffffff;
}

.fraction-divider-line {
  width: 100%;
  height: 2px;
  background: #334155;
  margin: 3px 0;
}

.fraction-op-select {
  font-size: 16px;
  font-weight: bold;
  padding: 4px 6px;
  border: 1px solid #94a3b8;
  border-radius: 3px;
  background: #f8fafc;
  cursor: pointer;
}

.fraction-equal-sign {
  font-size: 18px;
  font-weight: bold;
  color: #475569;
}

.fraction-result-container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  padding: 4px 10px;
  border-radius: 4px;
  min-width: 80px;
}

.fraction-res-value {
  font-size: 16px;
  font-weight: bold;
  color: #065f46;
}

.fraction-dec-value {
  font-size: 11.5px;
  color: #047857;
  font-family: monospace;
}

.fraction-btn-calculate {
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 3px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: bold;
  cursor: pointer;
}

.fraction-btn-calculate:hover {
  background: #1d4ed8;
}

.fraction-btn-secondary {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #cbd5e1;
  border-radius: 3px;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
}

.fraction-btn-secondary:hover {
  background: #e2e8f0;
}

.fraction-steps-output {
  margin-top: 10px;
  font-size: 12px;
  color: #475569;
  background: #f1f5f9;
  padding: 8px 12px;
  border-radius: 3px;
  font-family: monospace;
}

/* State Sales Tax Table Section (Exact to Image 2) */
.stc-states-section {
  margin-top: 28px;
  margin-bottom: 28px;
}

.stc-states-header {
  font-size: 13.5px;
  line-height: 1.5;
  color: #333333;
  margin-bottom: 12px;
}

.stc-filter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
  flex-wrap: wrap;
}

.stc-table-search {
  padding: 4px 8px;
  border: 1px solid #cbd5e1;
  border-radius: 3px;
  font-size: 12px;
  width: 200px;
}

.stc-states-table-wrap {
  border: 1px solid #b5c7d8;
  max-height: 520px;
  overflow-y: auto;
  border-radius: 3px;
}

.stc-states-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  text-align: left;
}

.stc-states-table thead {
  position: sticky;
  top: 0;
  background: #2b5a88;
  color: #ffffff;
  z-index: 2;
}

.stc-states-table th {
  padding: 8px 12px;
  font-weight: bold;
  border-right: 1px solid #4172a3;
  font-size: 12px;
}

.stc-states-table th:last-child {
  border-right: none;
}

.stc-states-table td {
  padding: 6px 12px;
  border-bottom: 1px solid #e2e8f0;
  border-right: 1px solid #f1f5f9;
}

.stc-states-table td:last-child {
  border-right: none;
}

.stc-states-table tbody tr:nth-child(even) {
  background-color: #f8fafc;
}

.stc-states-table tbody tr:hover {
  background-color: #edf5fc;
}

.stc-state-name-btn {
  background: none;
  border: none;
  color: #0844a4;
  font-size: 12.5px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  text-align: left;
  font-family: inherit;
}

.stc-state-name-btn:hover {
  color: #002266;
}

.stc-use-btn {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #003366;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 2px;
  cursor: pointer;
  margin-left: 6px;
}

.stc-use-btn:hover {
  background: #e2e8f0;
}

/* Visual Comparison Chart for States */
.stc-states-chart-wrap {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 14px;
  margin-top: 14px;
}

.stc-states-chart-title {
  font-size: 13px;
  font-weight: bold;
  color: #003366;
  margin-bottom: 10px;
}

/* Educational SEO / AEO / GEO Section */
.stc-seo-article {
  background: #ffffff;
  border-top: 2px solid #2b5a88;
  padding-top: 20px;
  margin-top: 30px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #262626;
}

.stc-seo-article h2 {
  font-size: 18px;
  color: #003366;
  margin: 18px 0 10px 0;
}

.stc-seo-article h3 {
  font-size: 15px;
  color: #1e293b;
  margin: 16px 0 8px 0;
}

.stc-seo-article h4 {
  font-size: 13.5px;
  color: #0f172a;
  margin: 12px 0 6px 0;
}

.stc-seo-article p {
  margin-bottom: 12px;
}

.stc-seo-box {
  background: #f0f7fc;
  border: 1px solid #c0d8ed;
  border-radius: 4px;
  padding: 12px 16px;
  margin: 14px 0;
  font-size: 13px;
}

.stc-seo-box ul {
  margin: 6px 0 0 18px;
}

.stc-seo-box li {
  margin-bottom: 4px;
}

.stc-seo-table-wrap {
  overflow-x: auto;
  margin: 16px 0;
}

.stc-seo-summary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
}

.stc-seo-summary-table th {
  background: #2b5a88;
  color: #ffffff;
  padding: 8px 10px;
  text-align: left;
  border: 1px solid #1e456e;
}

.stc-seo-summary-table td {
  padding: 7px 10px;
  border: 1px solid #cbd5e1;
}

.stc-seo-summary-table tbody tr:nth-child(even) {
  background-color: #f8fafc;
}

.stc-geo-box {
  background: #fbfcfe;
  border-left: 3px solid #2b5a88;
  padding: 10px 14px;
  margin: 14px 0;
  font-size: 12.5px;
}

.stc-geo-box h4 {
  margin-top: 0;
  color: #003366;
}

.stc-geo-box ul {
  margin-left: 18px;
}

.stc-aeo-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 12px 14px;
  margin-bottom: 12px;
}

.stc-aeo-card h4 {
  color: #003366;
  margin: 0 0 6px 0;
  font-size: 13.5px;
}

.stc-aeo-card p {
  margin: 0;
  font-size: 13px;
  color: #334155;
  line-height: 1.5;
}

/* Sidebar Styling (Matches Calculator.net Exactly) */
.stc-search-box {
  position: relative;
  display: flex;
  margin-bottom: 16px;
}

.stc-search-input {
  flex: 1;
  height: 28px;
  padding: 3px 8px;
  font-size: 12px;
  border: 1px solid #94a3b8;
  border-right: none;
  border-radius: 3px 0 0 3px;
  outline: none;
}

.stc-search-input:focus {
  border-color: #2563eb;
}

.stc-search-btn {
  height: 28px;
  padding: 0 12px;
  background: #2b5a88;
  color: #ffffff;
  border: 1px solid #2b5a88;
  border-radius: 0 3px 3px 0;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}

.stc-search-btn:hover {
  background: #1e456e;
}

.stc-search-dropdown {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #94a3b8;
  border-radius: 0 0 4px 4px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: none;
}

.stc-search-dropdown-item {
  padding: 8px 10px;
  font-size: 12px;
  color: #1e293b;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f1f5f9;
}

.stc-search-dropdown-item:hover {
  background: #e2eaf2;
  color: #0844a4;
}

.stc-search-dropdown-cat {
  font-size: 10.5px;
  color: #64748b;
  background: #f1f5f9;
  padding: 1px 5px;
  border-radius: 2px;
}

.stc-sidebar-card {
  border: 1px solid #9bb5cf;
  border-radius: 3px;
  overflow: hidden;
  background: #ffffff;
  margin-bottom: 16px;
}

.stc-sidebar-card-header {
  background: #2b5a88;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  padding: 6px 10px;
}

.stc-sidebar-card-body {
  padding: 10px;
}

.stc-sidebar-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  font-size: 11.5px;
}

.stc-sidebar-links-grid a {
  color: #0844a4;
  text-decoration: underline;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stc-sidebar-links-grid a:hover {
  color: #002277;
}

.stc-sidebar-links-grid a.active {
  font-weight: bold;
  color: #333333;
  text-decoration: none;
}

.stc-sidebar-footer-links {
  border-top: 1px solid #e2e8f0;
  padding: 6px 10px;
  font-size: 11px;
  color: #0844a4;
  background: #f8fafc;
  display: flex;
  justify-content: space-between;
}

.stc-sidebar-footer-links a {
  color: #0844a4;
  text-decoration: underline;
}

/* Modals (Exact Image 1 & Features) */
.stc-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.stc-modal-dialog {
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  width: 90%;
  max-width: 440px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.stc-modal-dialog-lg {
  max-width: 680px;
}

/* Instant Tool Modal Header matches Image 1: deep blue background, bold title, x close */
.stc-modal-header {
  background: #2b5a88;
  color: #ffffff;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stc-modal-header h3 {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
}

.stc-modal-close-icon {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}

.stc-modal-body {
  padding: 16px;
  max-height: 80vh;
  overflow-y: auto;
}

.stc-modal-footer {
  background: #f1f5f9;
  border-top: 1px solid #cbd5e1;
  padding: 8px 14px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.stc-modal-btn {
  padding: 5px 12px;
  font-size: 12px;
  font-weight: bold;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #334155;
  border-radius: 3px;
  cursor: pointer;
}

.stc-modal-btn:hover {
  background: #e2e8f0;
}

.stc-modal-btn.primary {
  background: #2b5a88;
  border-color: #1e456e;
  color: #ffffff;
}

.stc-modal-btn.primary:hover {
  background: #1e456e;
}

/* Instant Tool Modal Form (Image 1 replica) */
.instant-tool-intro {
  font-size: 12.5px;
  color: #475569;
  margin-bottom: 14px;
}

.instant-input-group {
  margin-bottom: 12px;
}

.instant-input-group label {
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 4px;
}

.instant-input-group input {
  width: 100%;
  padding: 6px 8px;
  font-size: 13.5px;
  border: 1px solid #94a3b8;
  border-radius: 3px;
  box-sizing: border-box;
}

.instant-compute-btn {
  background: #2b5a88;
  color: #ffffff;
  border: none;
  border-radius: 3px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
}

.instant-compute-btn:hover {
  background: #1e456e;
}

.instant-result-box {
  margin-top: 14px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 4px;
  padding: 10px 12px;
}

/* Printable Report Sheet */
.stc-print-toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.stc-print-sheet {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 18px;
  font-size: 12px;
  color: #111;
  border-radius: 4px;
}

/* Toast */
.stc-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1e293b;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 12.5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 20000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.stc-toast.show {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive adjustments */
@media (max-width: 800px) {
  .stc-main-layout {
    flex-direction: column;
  }
  .stc-sidebar-col {
    width: 100%;
  }
  .stc-form-container {
    max-width: 100%;
  }
  .stc-btn-row {
    padding-left: 0;
    justify-content: flex-start;
  }
}
