/* Modal auf oberster Ebene */
#qr-scanner-modal {
    position: fixed; /* bleibt beim Scrollen sichtbar */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.75); /* halbtransparent */
    display: none; /* standardmäßig unsichtbar */
    justify-content: center;
    align-items: center;
    z-index: 9999; /* hoch genug, um über allem zu liegen */
}

/* Kamerabereich */
#qr-reader {
    position: relative;
    z-index: 1; /* unter Button */
}

/* Schließen-Button */
#close-qr-scanner {
    position: absolute; /* über dem Modal/Kamera */
    top: 10px;
    right: 10px;
    z-index: 10000; /* noch über dem Modal */
    background-color: rgba(255,255,255,0.8);
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
}
