/* ১. গ্লোবাল সেটিংস: যা সব ডিভাইসে সমানভাবে কাজ করবে */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px; /* ফোনের স্ক্রিনে লেগে না যাওয়ার জন্য */
}

/* ২. কন্টেইনার: ল্যাপটপে ছোট দেখাবে কিন্তু ফোনে পুরোটা দখল করবে */
.upload-container {
    background: #ffffff;
    width: 100%;
    max-width: 500px; /* ল্যাপটপে এটি ৫০০ পিক্সেলের বেশি বড় হবে না */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

/* ৩. ইনপুট ফিল্ডগুলো সব ডিভাইসে সমান দেখানোর জন্য */
.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

input[type="text"],
input[type="file"] {
    width: 100%; /* ১০০% মানে স্ক্রিন যত বড় বা ছোট হোক এটি খাপ খাইয়ে নেবে */
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px; /* ফোনে জুম ইন হওয়া রোধ করতে ১৬ পিক্সেল বেস্ট */
}

/* ৪. বাটন ডিজাইন */
.upload-btn {
    width: 100%;
    padding: 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.upload-btn:hover {
    background-color: #0056b3;
}

/* ৫. মিডিয়া কোয়েরি: খুব ছোট ফোনের জন্য অ্যাডজাস্টমেন্ট */
@media (max-width: 480px) {
    .upload-container {
        padding: 20px;
    }
    
    h2 {
        font-size: 1.2rem;
    }
}