#search-container {
    text-align: right;
    margin-bottom: 20px;
}
#search-container label {
    font-weight: bold;
    margin-right: 10px;
}
#product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.product-item {
    border: 1px solid #ddd;
    padding: 15px;
    width: 220px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
    background-color: #fff;
    text-align: center;
}
.product-item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}
.product-name {
    font-size: 16px;
    margin-bottom: 10px;
}
.product-price {
    font-size: 18px;
    font-weight: bold;
    color: #d00;
    margin: 10px 0;
}
.pagination-center {
    margin-top: 30px;
    text-align: center;
}
#pagination button {
    margin: 3px;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background: #f8f8f8;
    cursor: pointer;
}
#pagination button.active {
    background: #0073aa;
    color: #fff;
}

