/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7f4ef;
    color: #4d4d4d;
    margin: 0;
    padding: 0;
}

h1, h2 {
    color: #4d4d4d;
    text-align: center;
}

p {
    font-size: 1.1em;
    text-align: center;
}

/* Container */
.container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff9f0;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

input[type="file"], button {
    margin: 10px 0;
}

input[type="file"] {
    padding: 10px;
    border: 2px dashed #ffcc80;
    border-radius: 5px;
    background-color: #fff6e0;
}

button {
    background-color: #ffb347;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

button:hover {
    background-color: #ff8c00;
}

/* Image Gallery */
.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.image-gallery img {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Counter Styles */
.results {
    margin-top: 30px;
    text-align: center;
    font-size: 1.3em;
    color: #4d4d4d;
}

/* Radio Buttons */
input[type="radio"] {
    margin: 5px;
}

label {
    font-size: 1.1em;
    color: #4d4d4d;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
        margin: 20px auto;
        padding: 15px;
    }

    h1, h2 {
        font-size: 1.8em;
    }

    p {
        font-size: 1em;
    }

    input[type="file"] {
        width: 90%;
    }

    button {
        width: 100%;
    }
}