#cameraContainer {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px; /* Adjust margin as needed */
}

#cameraFeed {
    max-width: 600px; /* Adjust max width as needed */
    height: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px; /* Adjust margin as needed */
}

#scanButton {
    width: 150px; /* Set a fixed width for all buttons */
    padding: 10px;
    margin-right: 10px; /* Adjust margin as needed */
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
/*    background-color: #007bff;
    color: #fff;*/
    cursor: pointer;
}

#scanButton:hover {
    background-color: #0056b3;
}
