body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: #333;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    text-align: center;
}

h1 {
    color: #007bff;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

#webcam-container {
    margin: 20px auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 200px; /* Should match webcam width */
    height: 200px; /* Should match webcam height */
    overflow: hidden; /* Ensure webcam doesn't spill */
}

#label-container {
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: bold;
}

#label-container div {
    margin-bottom: 10px;
    padding: 5px;
    background-color: #e9ecef;
    border-radius: 4px;
}


button {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    max-width: 200px;
    margin-top: 20px;
}

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