/* Styles for the non home page search bar */

#searchBarDiv {
    display: flex;
    align-items: center;
    width: 700px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    border: solid 1px #ccc;
}

#searchInput {
    width: 650px;
    padding: 7px 10px;
    border: none;
    font-size: 16px;
    color: #757575;
    outline: none;
}

#searchButton {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0088cc;
    border: none;
    padding: 7px;
    margin: 7px;
    cursor: pointer;
    border-radius: 7px;
}

#searchButtonIcon {
    width: 20px;
    height: 20px;
    fill: white;
}

@media screen and (max-width: 1050px) {

    #searchBarDiv {
        display: flex;
        align-items: center;
        width: 100%;
        background-color: #fff;
        border-radius: 5px;
        overflow: hidden;
        border: solid 1px #ccc;
    }

    #searchInput {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    #searchInput {
        padding: 5px 8px;
        font-size: 15px;
    }

    #searchButton {
        padding: 5px;
        margin: 5px;
    }

    #searchButtonIcon {
        width: 18px;
        height: 18px;
    }
}

/* Styles for the home page search bar */

#homeSearchBarDiv {
    display: flex;
    align-items: center;
    width: 700px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    border: solid 1px #ccc;
}

#homeSearchInput {
    width: 650px;
    padding: 7px 10px;
    border: none;
    font-size: 16px;
    color: #757575;
    outline: none;
}

#homeSearchButton {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0088cc;
    border: none;
    padding: 7px;
    margin: 7px;
    cursor: pointer;
    border-radius: 7px;
}

#homeSearchButtonIcon {
    width: 20px;
    height: 20px;
    fill: white;
}

@media screen and (max-width: 1050px) {

    #homeSearchBarDiv {
        display: flex;
        align-items: center;
        width: 100%;
        background-color: #fff;
        border-radius: 5px;
        overflow: hidden;
        border: solid 1px #ccc;
    }

    #homeSearchInput {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    #homeSearchInput {
        padding: 5px 8px;
        font-size: 15px;
    }

    #homeSearchButton {
        padding: 5px;
        margin: 5px;
    }

    #homeSearchButtonIcon {
        width: 18px;
        height: 18px;
    }
}