body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* পুরো ভিউপোর্ট উচ্চতা জুড়ে কেন্দ্রে রাখা */
}

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

.upload-btn {
    background: black;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.upload-box {
    margin-top: 15px;
    padding: 20px;
    border: 2px dashed #ccc;
    background: #f9f9f9;
    cursor: pointer;
}

.progress-container {
    margin-top: 20px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    background: #ddd;
    border-radius: 5px;
    overflow: hidden;
    height: 10px;
    margin-top: 5px;
}

.progress {
    width: 0%;
    height: 10px;
    background: #28a745;
}

#progress-text {
    font-weight: bold;
    color: #28a745;
}

.result {
    margin-top: 20px;
}

.result img {
    max-width: 100%;
    border-radius: 5px;
}

/* Download & Reset Button Styling */
#download-btn, #reset-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 20px; /* Download বাটনের মতই reset বাটনের সাইজ করা হয়েছে */
    font-size: 16px;
    text-decoration: none;
    color: white;
    background: black;  /* কালো ব্যাকগ্রাউন্ড */
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    border: none; /* বর্ডার সরানো হয়েছে */
}

#download-btn:hover {
    background: #007bff; /* হোভার করলে নীল */
}

#reset-btn:hover {
    background: #ff0000; /* হোভার করলে লাল */
}

.hidden {
    display: none;
}