body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

input[type="file"] {
    display: none;
}

#uploadLabel,
#convertButton {
    display: inline-block;
    width: 200px;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    box-sizing: border-box;
    font-size: 16px;
    margin-bottom: 20px;
}

.upload-btn:hover {
    background-color: #45a049;
}


#imageContainer {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#imageContainer img {
    max-width: calc(33% - 20px);
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

#imageContainer img:hover {
    transform: scale(1.05);
}

#convertButton {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 200px;
    font-size: 16px;

}

#convertButton:hover {
    background-color: #45a049;
}

#uploadedImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border: none;
}
