.wc-search-container {
    position: relative;
    margin: 20px 0;
}

#wc-search-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#wc-search-button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

#wc-search-results {
    margin-top: 10px;
    background: #f9f9f9;
    border: 1px solid #ccc;
    max-height: 300px;
    overflow-y: auto;
}

.wc-search-result {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.wc-search-result img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.wc-view-all {
    display: block;
    text-align: center;
    padding: 10px;
    background: #0073aa;
    color: white;
    text-decoration: none;
}

.wc-view-all:hover {
    background: #005177;
}