#store-locator-search {
    position: relative;
    display: inline-block;
    align-items: center; /* Align input and button vertically */
}

#store-locator-search input {
    padding-right: 40px;
    height: 50px; /* Set a fixed height for the input */
}

#store-locator-search button {
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    cursor: pointer;
    color: white;
    background-color:#D11F3E ;
    font-size: 20px;
    font-family: "Gotham";
    font-weight: 700;
    text-transform: capitalize;
    height: 50px; /* Match the input height */
    padding: 0 20px; /* Adjust padding for better sizing */
    margin-left: 10px; /* Add some space between input and button */
    border-radius: 0 7px 7px 0;
}
#store-locator-search button i {
    font-size: 20px; /* Adjust icon size */
}

#store-search-input{
    border: 4px solid #D11F3E;
    border-radius: 7px;
    color: #001F5B;
    font-size: 20px;
    font-family: "Gotham";
    font-weight: 700;
}
#store-locator-search {
    display: flex;
}
@media (max-width: 768px) {
    #store-search-input {
        font-size: 16px;
    }
    /* Button styling */
    #store-locator-search button {
        position: absolute;
        top: 0;
        right: 0;
        border: none;
        cursor: pointer;
        color: white;
        background-color:#D11F3E ;
        font-size: 16px;
        font-family: "Gotham";
        font-weight: 700;
        text-transform: capitalize;
        height: 50px; /* Match the input height */
        padding: 0 10px; /* Adjust padding for better sizing */
        margin-left: 10px; /* Add some space between input and button */
        border-radius: 0 7px 7px 0;
    }
    #store-locator-search button i {
        display: none;
    }

}
