/* Calculadora de Indemnizaciones Laborales (front) */
.cil-wrap{font-family:'Roboto',sans-serif;max-width:980px;margin:24px auto;background:#fff;border-radius:16px;box-shadow:0 10px 24px rgba(0,0,0,.06);padding:22px 22px 8px}
.cil-wrap h2{text-align:center;margin:8px 0 20px}
fieldset{border:1px solid #e5e7eb;border-radius:12px;padding:16px 16px 8px;margin-bottom:16px;background:#fafafa}
legend{font-weight:700;padding:0 6px}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px}
label{display:block;font-weight:500;margin-bottom:8px}
label.inline{display:inline-flex;align-items:center;gap:6px;margin-left:6px;font-weight:400}
.inline-input{display:inline-block;min-width:180px;margin-left:8px}
.hint,.mini{font-size:.9em;color:#4b5563}
.rubro{padding:8px 0;border-bottom:1px dashed #e5e7eb}
.rubro:last-child{border-bottom:none}
.sep{border:none;border-top:2px solid #e5e7eb;margin:10px 0}
.actions{display:flex;gap:10px;align-items:center;justify-content:flex-start;margin:10px 0 0}
.actions .right{margin-left:auto}
.btn-azul{background:#0a66c2;color:#fff;border:none;border-radius:10px;padding:10px 16px;font-weight:600;cursor:pointer;box-shadow:0 4px 10px rgba(10,102,194,.25)}
.btn-azul:hover{background:#084c92}
.resultados{margin-top:16px;background:#ffffff;border:1px solid #e5e7eb;border-radius:12px;padding:16px}
.resultados h3{margin:8px 0}
.resultados .renglon{display:flex;justify-content:space-between;border-bottom:1px solid #f0f0f0;padding:6px 0}
.resultados .renglon:last-child{border-bottom:none}
.resultados .exp{font-size:.88em;color:#374151;font-style:italic;margin:2px 0 8px}
.total{font-size:1.2em;font-weight:700;display:flex;justify-content:space-between;margin-top:8px;border-top:2px solid #e5e7eb;padding-top:8px}
.leyenda{font-size:.92em;color:#374151;margin:10px 4px 20px}
@media (prefers-color-scheme: dark){
  .cil-wrap{background:#101214;color:#E5E7EB;box-shadow:none;border:1px solid #1f2937}
  fieldset{background:#0B0D10;border-color:#1f2937}
  .resultados{background:#0B0D10;border-color:#1f2937}
  .btn-azul{box-shadow:none}
  .hint,.mini,.resultados .exp,.leyenda{color:#9CA3AF}
}