.image-wrapper {
    width: 100%;
    max-width: 400px; /* adjust as needed */
    height: 300px;    /* adjust as needed */
    border: 2px solid #ddd;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* prevent scroll */
    margin-bottom: 10px;
    background: #f9f9f9;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* fit image inside without scroll */
}

#progress-container {
    width: 100%;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    margin-top: 10px;
    overflow: hidden;
}

#progress-bar {
    width: 0%;
    height: 100%;
    background: #2d89ef;
    transition: width 0.2s ease;
}

.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.file-info {
    display: flex;
    gap: 45px;
}

#statusMessage {
    font-size: 14px;
    padding: 8px;
    background-color: #f0f8ff;
    border-left: 4px solid #007BFF;
    border-radius: 4px;
}

