
.wc-attribute-filter-search-input {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    font-size: 14px;
    line-height: 1.5;
    -webkit-appearance: none; /* Remove default styling for some browsers */
    -moz-appearance: none;
    appearance: none;
}

.wc-attribute-filter-search-input:focus {
    outline: none;
    border-color: #999;
    box-shadow: 0 0 0 1px #999;
}

/* Ensure the list items are initially visible if not filtered */
.woocommerce-widget-layered-nav-list li,
.wc-block-attribute-filter-list li { /* Also target the new block list items */
    display: list-item; /* Reset to default list item display */
}
