#customSearchForm {
    position: relative;
    width: 350px;
}

#customSearchInput {
    width: 100%;
    height: 35px;
    border-radius: 25px;
    border: 1px solid darkgrey;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding-right: 50px;
    /* Space for the search icon */
    box-sizing: border-box;
}

#customSearchForm button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #65bc7b;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

#customSearchForm button i {
    color: white;
}