/* styles.css */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.container {
    text-align: center;
}

#camera {
    position: relative;
    width: 640px;
    height: 480px;
    margin: 20px auto;
    border: 2px solid #ccc;
    background-color: #000;
}

#video {
    width: 100%;
    height: 100%;
}

#capture {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

#canvas {
    display: none;
}

#metadata {
    margin-top: 20px;
}

#metadata p {
    margin: 5px 0;
}
