﻿body {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
}



header {
    background-color: #6a6a7e;
    color: #fff;
    text-align: center;
    padding: 10px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}



.input-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.textbox,
.dropdown,
.search-btn {
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

@media (min-width: 450px) {
    .textbox,
    .dropdown,
    .search-btn {
        width: 250px;
    }
}




@media (min-width: 450px) {
    .textbox1,
    .dropdown1,
    .search-btn1 {
        width: 250px;

        color: #FFFFFF;
        font-weight: bold;
        background-color: #383A25;
        font-size: 12px;
        font-family: "Tahoma";
        border: #333333 1px solid;
    }
}



.textbox1,
.dropdown1,
.search-btn1 {
    box-sizing: border-box;
    width: 100%;
    padding: 10px;

    margin-bottom: 10px;
    color: #FFFFFF;
    font-weight: bold;
    background-color: #383A25;
    font-size: 12px;
    font-family: "Tahoma";
    border: #333333 1px solid;
}



.item-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
}

.item {
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}


    .item img {
        max-width: 100%;
        height: auto;
        border-radius: 5px;
        margin-bottom: 10px;
    }


footer {
  
    text-align: center;
    padding: 10px;
}



/* Media Query for Responsive Design */
@media screen and (max-width: 768px) {
    .item-list {
        grid-template-columns: 1fr;
    }

    .item {
        margin-bottom: 20px;
    }
}



.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px; /* Adjust spacing between images */
}

    .image-grid img {
        width: 100%; /* Ensure images take the full width of the cell */
        height: auto; /* Maintain aspect ratio */
    




    

