/* Navigation Search Form */
.nav-search-form {
    display: inline-flex;
    flex-flow: row nowrap;
    /* Force row */
    align-items: center;
    margin-left: 1rem;
}

.nav-search-form input[type="text"] {
    padding: 0.4rem 0.6rem;
    border: 1px solid #ccc;
    margin-bottom: 0;
    /* Override generic input margin */
    font-size: 0.9rem;
    width: 150px;
}

.nav-search-form button {
    background: transparent;
    border: none;
    padding: 0.4rem;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    margin-left: -35px;
    /* Pull button into input field */
}

@media (max-width: 600px) {
    .nav-search-form {
        margin: 1rem 0;
        width: 80%;
        justify-content: center;
    }

    .nav-search-form input[type="text"] {
        width: 100%;
    }

    .nav-search-form button {
        margin-left: -40px;
    }
}