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

.container {
    text-align: center;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#image-upload {
    margin-top: 1rem;
}

#image-container {
    margin-top: 1rem;
    min-height: 200px;
    border: 1px dashed #ccc;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#uploaded-image {
    max-width: 100%;
    max-height: 200px;
    display: none;
}

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