/* Style the search field */
.wp-block-search__input {
    height: 40px; /* Adjust the height as needed */
    width: 100%; /* Make the search field take up the full width of its container */
    box-sizing: border-box; /* Ensure the width includes padding */
    border-radius: 5px; /* Adjust border radius if desired */
    padding-right: 40px; /* Create space for the search icon */
}

/* Remove the default search button */
.wp-block-search__button {
    display: none;
}

/* Add a search icon (magnifying glass) */
.wp-block-search {
    position: relative;
}

.wp-block-search::after {
    content: '\1F50D'; /* Unicode for magnifying glass */
    font-size: 20px; /* Adjust the size of the icon */
    position: absolute;
    right: 10px; /* Adjust the position of the icon */
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Ensure the icon does not interfere with the input field */
}
