.woocommerce-products-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.woocommerce-products-table th,
.woocommerce-products-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.woocommerce-products-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.woocommerce-products-table tr:hover {
    background-color: #f9f9f9;
}

.product-thumbnail img {
    width: 60px;
    height: auto;
}

.product-search-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-end;
}

.product-search {
    display: flex;
    gap: 10px;
}

.product-search input[type="search"] {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 250px;
}

.product-search button {
    padding: 8px 15px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.product-search button[type="reset"] {
    background-color: #666;
}

.product-buy .button {
    background-color: #333;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.product-buy .quantity {
    display: inline-block;
    margin-right: 10px;
}

.product-buy .quantity input {
    width: 50px;
    padding: 5px;
    text-align: center;
}