/* Main container to hold sidebar and products */
#container {
    display: flex;
    flex-direction: row; /* Arrange sidebar and main content in a row */
    align-items: flex-start; /* Align items to the top */
}
#search-container {
    text-align: center;
    margin: 20px;
}

#searchInput {
    padding: 10px;
    width: 250px;
    font-size: 16px;
}

#searchButton {
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
}

/* Sidebar styles */
#sidebar-container {
    width: 250px; /* Set sidebar width */
    padding: 20px;
    background-color: #f4f4f4; /* Light gray background */
    height: 100vh; /* Full height */
}

/* Main content (Products) */
#main-content {
    flex: 1; /* Take remaining width */
    padding: 20px;
}

/* Grid for products */
#products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Each product box */
.product {
    width: 200px; /* Set consistent width */
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.product img {
    width: 100%;
    height: auto;
}
