/* Control search field width based on language buttons visibility */

/* When language buttons are hidden, restore original search width */
body:not(.lang-buttons-visible) .top-h-row .search {
    width: 30% !important;
}

body:not(.lang-buttons-visible) .search {
    padding-left: 0 !important;
}

/* When language buttons are visible, use adjusted width */
body.lang-buttons-visible .top-h-row .search {
    width: 22% !important;
}

