/* calcPLL.css */ body { font-family: sans-serif; margin: 0; padding: 1em; } .grid-container { display: grid; /* 16 columns at 6.25% each add up to 100% of the width */ grid-template-columns: repeat(16, 6.25%); grid-auto-rows: auto; gap: 0.5em; align-items: center; } /* Each input row is positioned in the left 10 columns */ .row { display: grid; /* We expect up to 3 parameters per row (each 3 columns = 9 columns total). Adjust gap or add an empty cell if you need to fill 10 columns exactly. */ grid-template-columns: repeat(9, 1fr); gap: 0.5em; align-items: center; } .cell { padding: 0.2em; } .label { text-align: right; font-weight: bold; grid-column: span 1; background: #eef; } .value input { width: 100%; padding: 0.2em; box-sizing: border-box; } .value { grid-column: span 1; } .message-box { border: 1px solid #ccc; padding: 0.5em; background: #eef; height: 100%; box-sizing: border-box; }