#barcode-scanner-container {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999; /* Sicherstellen, dass es über allen anderen Elementen liegt */
    background-color: rgba(0, 0, 0, 0.5); /* Optional: dunkler Hintergrund */
}

#barcode-scanner {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#barcode-scanner-video {
    position: relative;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* Das Video soll den gesamten Bereich ausfüllen */
    z-index: 9000;
}

#start-scan-button{
    background-color:#075e9a;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 0;
    width: 100%;
    font-size: 1.5rem;
    padding: .5rem;
}
#start-scan-button:hover{
    background-color:#fff;
    color: #075e9a;
}
