#js-tool-container-street-lighting-calculator .sl-app { --sl-glow: #f2a93b; --sl-night: #2f66ff; display: flex; flex-direction: column; gap: 22px; color: var(--text-primary); }
html[data-theme="dark"] #js-tool-container-street-lighting-calculator .sl-app { --sl-glow: #ffc24d; --sl-night: #4d7cff; }
#js-tool-container-street-lighting-calculator .sl-app .tbcalc-fieldset { border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 14px 16px 16px; margin: 0 0 14px; }
#js-tool-container-street-lighting-calculator .sl-app .tbcalc-legend { padding: 0 6px; font-weight: 600; font-size: 0.95rem; color: var(--text-secondary); }
#js-tool-container-street-lighting-calculator .sl-app .tbcalc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; }
#js-tool-container-street-lighting-calculator .sl-app .sl-grid3 { grid-template-columns: 1fr 1fr 1fr; }
#js-tool-container-street-lighting-calculator .sl-app .tbcalc-field { display: flex; flex-direction: column; gap: 6px; }
#js-tool-container-street-lighting-calculator .sl-field-wide { grid-column: 1 / -1; }
#js-tool-container-street-lighting-calculator .sl-app .tbcalc-hint { font-size: 0.82rem; line-height: 1.35; color: var(--text-muted); }
#js-tool-container-street-lighting-calculator .sl-outcome { display: flex; flex-direction: column; gap: 18px; }
#js-tool-container-street-lighting-calculator .sl-heroes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
#js-tool-container-street-lighting-calculator .sl-hero { border: 1px solid var(--border-color); border-left: 4px solid var(--sl-night); border-radius: var(--radius-md); background: var(--bg-tertiary); padding: 16px 18px; display: flex; flex-direction: column; gap: 6px; min-height: 150px; }
#js-tool-container-street-lighting-calculator .sl-hero-power { border-left-color: var(--sl-glow); }
#js-tool-container-street-lighting-calculator .sl-hero-label { font-size: 0.9rem; color: var(--text-secondary); }
#js-tool-container-street-lighting-calculator .sl-hero-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
#js-tool-container-street-lighting-calculator .sl-hero-value { font-size: clamp(2rem, 6vw, 3rem); font-weight: 700; line-height: 1.05; color: var(--sl-night); }
#js-tool-container-street-lighting-calculator .sl-hero-power .sl-hero-value { color: var(--sl-glow); }
#js-tool-container-street-lighting-calculator .sl-hero-note { margin: 0; font-size: 0.86rem; line-height: 1.4; color: var(--text-secondary); }
#js-tool-container-street-lighting-calculator .tbcalc-unit { font-size: 1rem; color: var(--text-secondary); }
#js-tool-container-street-lighting-calculator .sl-derived { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
#js-tool-container-street-lighting-calculator .sl-derived-item { border: 1px solid var(--border-color); border-radius: var(--radius-md); background: var(--bg-tertiary); padding: 12px 14px; display: flex; flex-direction: column; gap: 6px; min-height: 84px; }
#js-tool-container-street-lighting-calculator .tbcalc-result-label { font-size: 0.82rem; line-height: 1.3; color: var(--text-secondary); }
#js-tool-container-street-lighting-calculator .tbcalc-result-row { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
#js-tool-container-street-lighting-calculator .tbcalc-result-value { font-size: clamp(1.25rem, 3vw, 1.7rem); font-weight: 700; color: var(--text-primary); }
#js-tool-container-street-lighting-calculator .tbcalc-status { border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 10px 14px; font-size: 0.9rem; line-height: 1.4; color: var(--text-secondary); background: var(--bg-tertiary); }
#js-tool-container-street-lighting-calculator .tbcalc-status.warn { border-color: var(--warning); background: var(--warning-light); color: var(--warning); }
#js-tool-container-street-lighting-calculator .sl-note { border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 12px 14px; }
#js-tool-container-street-lighting-calculator .sl-note-title { display: block; font-weight: 600; margin-bottom: 4px; color: var(--text-secondary); }
#js-tool-container-street-lighting-calculator .sl-note-text { margin: 0; font-size: 0.86rem; line-height: 1.45; color: var(--text-secondary); }
#js-tool-container-street-lighting-calculator .sl-method { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
#js-tool-container-street-lighting-calculator .sl-method-line { margin: 0; border: 1px solid var(--border-color); border-radius: var(--radius-md); background: var(--bg-tertiary); padding: 10px 14px; font-size: 0.9rem; line-height: 1.45; color: var(--text-secondary); }
#js-tool-container-street-lighting-calculator .sl-limits { margin: 0; font-size: 0.85rem; line-height: 1.5; color: var(--text-muted); border-left: 3px solid var(--border-color); padding-left: 12px; }
@media (max-width: 640px) {
  #js-tool-container-street-lighting-calculator .sl-app .tbcalc-grid { grid-template-columns: 1fr; }
  #js-tool-container-street-lighting-calculator .sl-heroes { grid-template-columns: 1fr; }
  #js-tool-container-street-lighting-calculator .sl-derived { grid-template-columns: 1fr 1fr; }
  #js-tool-container-street-lighting-calculator .sl-app .sl-grid3 { grid-template-columns: 1fr; }
}