#ajax_searchwp_results {
    max-height: 200px;
    overflow-y: auto;
    background-color: #fff;
    margin:0px;
}

#ajax_searchwp_results div {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

#ajax_searchwp_results div a {
    text-decoration: none;
    color: #333;
}

#ajax_searchwp_results div:hover {
    background-color: #f0f0f0;
}
.searcwp-form {
    position: relative;
}

#searchwpform {
    display: flex;
    align-items: center;
    width: 100%;
}

#searchwpform input{
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    outline: none;
    height: 40px; /* Ensure consistent height */
    box-sizing: border-box;
}

#searchsubmit {
    background: #fff;
    border: 1px solid #ccc;
    border-left: none;
    border-radius: 0 4px 4px 0;
    padding: 0 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px; /* Ensure consistent height */
    box-sizing: border-box;
}

#searchsubmit svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 600px) {
    #s, #searchsubmit {
        padding: 8px;
        height: 36px; /* Adjust height for smaller screens */
    }

    #searchsubmit svg {
        width: 20px;
        height: 20px;
    }
}