/* Blog / treatments listing header + search bar.
   Restores styling for the listing header (original asset was never in the backup). */

#rowerlay{
    max-width: 1100px;
    margin: 0 auto;
}

#rowerlay h2{
    display: inline-block;
    padding: 6px 18px;
    border-radius: 4px;
}

.searchbar{
    max-width: 420px;
    margin-top: 14px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    align-items: center;
}

.searchinput{
    flex: 1 1 auto;
    border: none;
    outline: none;
    background: transparent;
    padding: 6px 14px;
    font-size: 15px;
    color: #333;
}

.searchbutton{
    border: none;
    background: #34a5dd no-repeat center / 18px 18px;
    /* magnifier glyph (icon/magnifier.png is absent from the backup) */
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><line x1='21' y1='21' x2='16.65' y2='16.65'/></svg>");
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    flex: 0 0 auto;
}

/* hide the broken <img>; the glyph above replaces it */
.searchmag{
    display: none;
}

.searchnoresult{
    width: 100%;
    text-align: center;
    color: #777;
    padding: 40px 0;
    font-size: 16px;
}
