/* Reset default margin and padding, and apply border-box sizing */ * { margin: 0; padding: 0; box-sizing: border-box; } /* Ensure html and body take full viewport size */ html, body { width: 100%; height: 100%; } /* Style for the scanner title */ .barcode-scanner-title { height: 60px; line-height: 60px; text-align: center; font-size: 20px; } /* Container where the barcode scanner will be rendered */ .barcode-scanner-view { width: 100%; height: calc(100% - 210px); /* Fill remaining space below the title */ } .result-view { width: 100%; height: 150px; padding: 10px; overflow: auto; }