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

.container {
    text-align: center;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
}

#start-button {
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

#start-button:hover {
    background-color: #45a049;
}


#status {
    margin: 1rem 0;
    font-size: 1rem;
    color: #666;
    min-height: 20px;
}

#webcam-container {
    margin-top: 1rem;
    border: 3px solid #ccc;
    border-radius: 5px;
    display: inline-block;
}

#label-container {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
}

#label-container div {
    margin: 0.5rem 0;
}
