.cameraModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

#qrCodeScannerModal .modal-content {
    background-color: transparent;
    margin: 5% auto;
    padding: 20px;
    width: 94%;
    height: 80%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal-content h1 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
    /* Larger text */
    font-family: 'Arial', sans-serif;
    /* Nicer font */
    font-weight: bold;
    line-height: 1.2;
}

.modal-content .close {
    color: #fff;
    position: absolute;
    top: 10px;
    right: 10px;
    /* Moved to the top right corner */
    font-size: 35px;
    font-weight: bold;
}

.modal-content .close:hover,
.modal-content .close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

#qr-video {
    width: 100%;
    height: calc(100% - 80px);
    /* Adjusted height to accommodate text */
    object-fit: cover;
}

#qr-canvas {
    display: none;
}