/* kalkulator-thr.css */
.kthr-wrapper { max-width:800px; margin:30px auto; font-family: Arial, sans-serif; background:#fff; padding:20px; border-radius:10px; border:1px solid #eee; }
.kthr-title { font-size:22px; margin-bottom:6px; color:#0b5ed7; }
.kthr-desc { color:#666; margin-bottom:15px; }
.kthr-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap:12px; margin-bottom:12px; }
.kthr-label { display:block; font-weight:600; color:#333; font-size:13px; }
.kthr-grid input, .kthr-grid select { width:100%; padding:10px; border:1px solid #ddd; border-radius:8px; box-sizing:border-box; }
.kthr-button { grid-column:1/-1; padding:12px; background:#0b5ed7; color:#fff; border:none; border-radius:8px; cursor:pointer; font-weight:700; }
.kthr-result { margin-top:12px; padding:14px; background:#f1f9f1; border-left:4px solid #2f9e44; border-radius:6px; font-weight:700; }
.kthr-explanation { margin-top:18px; font-size:14px; color:#333; line-height:1.5; }
.kthr-explanation pre { background:#fafafa; padding:10px; border-radius:6px; overflow:auto; }
