/* Barcode Scanner Dialog Styles - Less intrusive design */

/* Semi-transparent backdrop so user can see content behind */
.barcode-scanner-backdrop {
    background-color: rgba(0, 0, 0, 0.2) !important;
}

/* Ensure dialog is positioned at top and doesn't block screen */
.mud-dialog-container {
    align-items: flex-start !important;
    padding-top: 50px;
}

/* Make dialog compact for hardware scanner */
.mud-dialog {
    max-height: 85vh;
}

/* Make dialog content scrollable if needed */
.mud-dialog .mud-dialog-content {
    max-height: calc(85vh - 120px);
    overflow-y: auto;
}
