body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f0f0f0;
    color: #333;
}

h1 {
    text-align: center;
    color: #0056b3;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.input-section {
    margin-bottom: 20px;
    text-align: center;
}

input[type="file"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#status {
    font-weight: bold;
    color: #d9534f;
}

.image-display {
    display: none; /* Hidden by default */
    justify-content: center;
    margin-bottom: 20px;
    min-height: 200px;
}

.canvas-container {
    position: relative;
    max-width: 100%;
}

#imageSrc {
    max-width: none;
    width: auto;
    height: auto;
    display: block;
}

#outputCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
}

#results {
    margin-top: 20px;
}

#results h2 {
    color: #0056b3;
}

#resultsList {
    list-style-type: none;
    padding: 0;
}

#resultsList li {
    background: #e9ecef;
    margin-bottom: 5px;
    padding: 10px;
    border-radius: 4px;
} 

