/* Add basic styles for your container */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    background-color: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Style the file input to be hidden and styled like a button */
#fileInput {
    display: none;
}

label[for="fileInput"] {
    cursor: pointer;
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s;
}

label[for="fileInput"]:hover {
    background-color: #0056b3;
}

/* Style the buttons */
button {
    cursor: pointer;
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    margin-top: 10px;
    transition: background-color 0.3s;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

button:hover {
    background-color: #0056b3;
}
/* Add styles for the upload button */
.upload-button {
    cursor: pointer;
    display: inline-block;
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 20px;
    transition: background-color 0.3s;
}

.upload-button:hover {
    background-color: #0056b3;
}

/* Rest of your existing CSS */
/* ... */

