/* global-search.css
 * Visual styles for Portal.GlobalSearch. Compact variant only in Phase 1.
 * Spotlight + Tabbed variants will be appended in Phase 5.5.
 *
 * Tokens — uses OECTA design-system custom properties when present, with
 * literal fallbacks so this stylesheet renders correctly even if loaded
 * before oecta-tokens.css.
 *
 * See GLOBAL_SEARCH_DESIGN.md for the design rationale.
 */

/* =========================================================================
 *  Dropdown container — anchored under the header search input
 * ========================================================================= */
.gs-dropdown {
    position: fixed;
    z-index: 100000;
    max-height: min(60vh, 480px);
    overflow: hidden;
    border: none;
    border-radius: 12px 12px 14px 14px;
    background: var(--oecta-surface-1, rgba(250, 249, 252, 0.92));
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    /* Multi-layer ambient shadow, navy-tinted, skewed right to suggest light from upper-left. */
    box-shadow:
        0 1px 2px rgba(32, 65, 100, 0.06),
        2px 4px 12px rgba(32, 65, 100, 0.08),
        2px 12px 32px rgba(32, 65, 100, 0.12);
    transform-origin: top center;
    animation: gs-dropdown-enter 140ms cubic-bezier(0.2, 0, 0, 1);
    will-change: transform, opacity;
}

.gs-dropdown.hidden {
    display: none;
}

@keyframes gs-dropdown-enter {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.gs-dropdown-inner {
    max-height: inherit;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

/* =========================================================================
 *  Section header — tonal-shift band, NO 1px divider
 * ========================================================================= */
.gs-section {
    /* No padding — sub-elements supply their own. */
}

.gs-section + .gs-section .gs-section-header {
    /* Slight extra breathing room between adjacent sections, achieved with
     * margin-top on the SECOND section's header rather than a border-bottom
     * on the previous section. Preserves the no-line rule. */
    margin-top: 4px;
}

.gs-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 28px;
    padding: 0 16px;
    background: var(--oecta-surface-2, rgba(238, 237, 241, 0.7));
}

.gs-section-label {
    font-family: 'Manrope', 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--oecta-on-surface-2, #4a4a4a);
}

.gs-section-count {
    font-family: 'Manrope', 'Inter', system-ui, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--oecta-on-surface-3, #757575);
}

/* =========================================================================
 *  Result row — shared across all variants (Compact / Spotlight / Tabbed)
 * ========================================================================= */
.gs-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    min-height: 56px;
    cursor: pointer;
    transition: background-color 100ms ease-out, color 100ms ease-out;
}

.gs-row:hover {
    /* Subtle navy wash, not light grey. Reads as "this row is being pointed
     * at" without losing the surrounding context. */
    background: rgba(32, 65, 100, 0.06);
}

/* Active (keyboard or hover-promoted) row — navy fill, white text, amber hairline.
 * Double-class selector (specificity 0,2,0) so it beats the bare .gs-row:hover
 * rule (0,1,0) when both apply. Otherwise hovering the active row would wipe
 * the navy bg with the hover wash. */
.gs-row.gs-row--active {
    background: var(--oecta-navy, #204164);
    color: #ffffff;
}

/* Active + hover — a hair lighter than full navy so the row still reads as
 * selected, but the cursor's presence is acknowledged. */
.gs-row.gs-row--active:hover {
    background: #2a5079;
}

.gs-row--active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--oecta-amber, #fea520);
    transform-origin: top;
    animation: gs-hairline-in 120ms cubic-bezier(0.2, 0, 0, 1);
}

@keyframes gs-hairline-in {
    from { transform: scaleY(0); opacity: 0.6; }
    to   { transform: scaleY(1); opacity: 1; }
}

.gs-row--active .gs-row-primary,
.gs-row--active .gs-row-secondary,
.gs-row--active .gs-section-count {
    color: #ffffff;
}

.gs-row--active .gs-row-secondary {
    opacity: 0.78;
}

/* =========================================================================
 *  Row text block
 * ========================================================================= */
.gs-row-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gs-row-primary {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--oecta-on-surface-1, #1a1a1a);
    /* Inline flow — flex+gap would split text around <mark> highlights,
     * rendering "Kielbasa" as "Kiel basa". The status dot is an inline
     * element that flows naturally after the name. */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gs-row-primary .gs-status-dot {
    margin-left: 6px;
    vertical-align: middle;
}

.gs-row-secondary {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--oecta-on-surface-2, #4a4a4a);
    opacity: 0.78;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =========================================================================
 *  Icons — date card, avatar, glyph, empty
 * ========================================================================= */
.gs-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-family: 'Manrope', 'Inter', system-ui, sans-serif;
    color: #ffffff;
    background: var(--oecta-navy, #204164);
}

.gs-icon--date {
    flex-direction: column;
    line-height: 1;
    padding: 4px 0;
}

.gs-icon-mon {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    opacity: 0.85;
}

.gs-icon-day {
    font-size: 16px;
    font-weight: 700;
    margin-top: 2px;
}

.gs-icon--avatar {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    /* JS seeds --avatar-bg per-row; falls back to navy if unset. Using a
     * custom property (not inline `background:`) keeps the .gs-row--active
     * override able to win the cascade. */
    background: var(--avatar-bg, #204164);
}

.gs-icon--glyph .material-icons {
    font-size: 22px;
    color: #ffffff;
}

.gs-icon--empty {
    background: var(--oecta-surface-3, rgba(227, 226, 229, 0.8));
    color: var(--oecta-on-surface-2, #4a4a4a);
}

.gs-icon--empty .material-icons {
    font-size: 20px;
    color: var(--oecta-on-surface-2, #4a4a4a);
}

/* Active row inverts the icon palette for contrast. */
.gs-row--active .gs-icon {
    background: var(--oecta-amber, #fea520);
    color: var(--oecta-navy, #204164);
}

.gs-row--active .gs-icon--glyph .material-icons {
    color: var(--oecta-navy, #204164);
}

/* =========================================================================
 *  Substring highlight — amber background, navy text, calm pulse on appear
 * ========================================================================= */
.gs-highlight {
    background: rgba(254, 165, 32, 0.28);
    color: inherit;
    padding: 0 2px;
    border-radius: 2px;
    transform-origin: center;
    animation: gs-highlight-in 200ms cubic-bezier(0.2, 0, 0, 1);
    will-change: transform, opacity;
}

.gs-row--active .gs-highlight {
    /* Inverted: amber text on transparent so it shows against navy. */
    background: rgba(254, 165, 32, 0.35);
    color: #ffffff;
}

@keyframes gs-highlight-in {
    from { transform: scaleY(0.7); opacity: 0.4; }
    to   { transform: scaleY(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .gs-highlight,
    .gs-row--active::before,
    .gs-dropdown {
        animation: none !important;
    }
}

/* =========================================================================
 *  Status dots + pills
 * ========================================================================= */
.gs-status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.gs-status-dot--active {
    background: #38a169;
    box-shadow: 0 0 0 2px rgba(56, 161, 105, 0.18);
}

.gs-status-dot--inactive {
    background: #cbd5e0;
}

.gs-pill {
    flex-shrink: 0;
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 999px;
    line-height: 1.5;
}

.gs-pill--live {
    background: rgba(56, 161, 105, 0.15);
    color: #1f7a4d;
}

.gs-pill--draft {
    background: rgba(116, 119, 127, 0.15);
    color: #4a4a4a;
}

.gs-pill--attended {
    background: rgba(254, 165, 32, 0.2);
    color: #8a5300;
}

.gs-row--active .gs-pill--live {
    background: rgba(255, 255, 255, 0.18);
    color: #d8f0e5;
}

.gs-row--active .gs-pill--draft {
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.88);
}

.gs-row--active .gs-pill--attended {
    background: rgba(254, 165, 32, 0.4);
    color: #ffffff;
}

/* =========================================================================
 *  Footer — "See all" + ⌘K hint
 * ========================================================================= */
.gs-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    padding: 0 16px;
    background: var(--oecta-surface-2, rgba(238, 237, 241, 0.7));
}

.gs-footer-action {
    appearance: none;
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--oecta-amber, #fea520);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 120ms ease-out;
}

.gs-footer-action:hover {
    opacity: 0.8;
}

.gs-footer-action:focus-visible {
    outline: 2px solid var(--oecta-amber, #fea520);
    outline-offset: 2px;
    border-radius: 4px;
}

.gs-footer-hint {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--oecta-on-surface-3, #757575);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.gs-key {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 18px;
    padding: 0 5px;
    border-radius: 4px;
    background: var(--oecta-surface-3, rgba(227, 226, 229, 0.85));
    color: var(--oecta-on-surface-2, #4a4a4a);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* =========================================================================
 *  Empty / no-results state
 * ========================================================================= */
.gs-empty {
    padding: 32px 24px;
    text-align: center;
}

.gs-empty-title {
    font-family: 'Newsreader', 'Inter', serif;
    font-style: italic;
    font-size: 18px;
    font-weight: 400;
    color: var(--oecta-on-surface-1, #1a1a1a);
    margin-bottom: 6px;
}

.gs-empty-hint {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    color: var(--oecta-on-surface-3, #757575);
}

/* =========================================================================
 *  Compact variant — Phase 1 default
 *  Tightens row height + section header to maximise above-the-fold content.
 * ========================================================================= */
.gs-dropdown--variant-compact .gs-row {
    min-height: 44px;
    padding: 6px 16px;
}

.gs-dropdown--variant-compact .gs-icon {
    width: 32px;
    height: 32px;
}

.gs-dropdown--variant-compact .gs-icon-day {
    font-size: 14px;
}

.gs-dropdown--variant-compact .gs-icon-mon {
    font-size: 8px;
}

.gs-dropdown--variant-compact .gs-icon--avatar {
    font-size: 11px;
}

.gs-dropdown--variant-compact .gs-icon--glyph .material-icons {
    font-size: 18px;
}

.gs-dropdown--variant-compact .gs-row-primary {
    font-size: 14px;
}

.gs-dropdown--variant-compact .gs-row-secondary {
    font-size: 12px;
}

.gs-dropdown--variant-compact .gs-section-header {
    height: 22px;
}

/* =========================================================================
 *  Cmd+K palette (Phase 2)
 *
 *  Centred modal, 640px wide, top 20vh. Shares all .gs-row / .gs-section /
 *  .gs-highlight styles with the header dropdown — only the chrome differs.
 * ========================================================================= */

.gs-palette-scrim {
    position: fixed;
    inset: 0;
    z-index: 1000001;          /* per feedback_admin_modals_use_zindex_60001 — above all admin modals */
    background: rgba(20, 28, 42, 0.55);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20vh 16px 16px;
    animation: gs-scrim-in 120ms cubic-bezier(0.2, 0, 0, 1);
    will-change: opacity;
}

.gs-palette-scrim.hidden {
    display: none;
}

@keyframes gs-scrim-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.gs-palette {
    width: 100%;
    max-width: 640px;
    max-height: calc(80vh - 16px);
    display: flex;
    flex-direction: column;
    background: var(--oecta-surface-1, rgba(250, 249, 252, 0.94));
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 2px 8px rgba(32, 65, 100, 0.10),
        0 16px 40px rgba(32, 65, 100, 0.18),
        0 32px 80px rgba(32, 65, 100, 0.22);
    transform-origin: top center;
    animation: gs-palette-in 160ms cubic-bezier(0.2, 0, 0, 1);
    will-change: transform, opacity;
}

@keyframes gs-palette-in {
    from { transform: scale(0.98); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

/* Input row — 56px tall, larger than the header input. */
.gs-palette-input-row {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 56px;
    padding: 0 18px;
    background: transparent;
    flex-shrink: 0;
}

.gs-palette-icon {
    color: var(--oecta-on-surface-2, #4a4a4a);
    font-size: 22px;
    flex-shrink: 0;
}

.gs-palette-input {
    flex: 1;
    min-width: 0;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Newsreader', 'Inter', system-ui, serif;
    font-style: italic;
    font-size: 16px;
    font-weight: 400;
    color: var(--oecta-on-surface-1, #1a1a1a);
    padding: 0;
}

.gs-palette-input::placeholder {
    color: var(--oecta-on-surface-3, #757575);
    font-style: italic;
}

/* When the user starts typing, drop the italic — Newsreader italic is the
 * placeholder treatment only. */
.gs-palette-input:not(:placeholder-shown) {
    font-family: 'Inter', system-ui, sans-serif;
    font-style: normal;
}

.gs-palette-shortcut {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 22px;
    padding: 0 7px;
    border-radius: 5px;
    background: var(--oecta-surface-2, rgba(238, 237, 241, 0.85));
    color: var(--oecta-on-surface-2, #4a4a4a);
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* Scrollable result area between the input and the footer. */
.gs-palette-results {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    /* Tonal lift to separate the result list from the input row without a 1px line. */
    background: linear-gradient(
        to bottom,
        var(--oecta-surface-2, rgba(238, 237, 241, 0.4)) 0,
        var(--oecta-surface-2, rgba(238, 237, 241, 0.4)) 1px,
        transparent 1px
    );
    background-repeat: no-repeat;
    background-size: 100% 1px;
}

/* Quick-action icon — amber tonal background to set it apart from result icons. */
.gs-icon--quick {
    background: rgba(254, 165, 32, 0.18);
    color: var(--oecta-amber, #fea520);
}

.gs-icon--quick .material-icons {
    color: var(--oecta-amber, #fea520);
    font-size: 20px;
}

.gs-row--active .gs-icon--quick {
    background: var(--oecta-amber, #fea520);
    color: var(--oecta-navy, #204164);
}

.gs-row--active .gs-icon--quick .material-icons {
    color: var(--oecta-navy, #204164);
}

/* Editorial secondary line for quick-action descriptions. */
.gs-row-secondary--editorial {
    font-family: 'Newsreader', 'Inter', serif;
    font-style: italic;
    font-size: 13px;
    color: var(--oecta-on-surface-2, #4a4a4a);
}

.gs-row--active .gs-row-secondary--editorial {
    color: rgba(255, 255, 255, 0.85);
}

/* Footer hint bar */
.gs-palette-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    height: 36px;
    padding: 0 16px;
    background: var(--oecta-surface-2, rgba(238, 237, 241, 0.7));
    flex-shrink: 0;
}

.gs-palette-hint {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--oecta-on-surface-2, #4a4a4a);
}

/* =========================================================================
 *  Full-page search results panel (#panel-search-results)
 *
 *  Lives inside .portal-main like every other admin panel. The shell is a
 *  vertical stack: input row + chip-filter row + scrollable body of sections.
 *  Each section renders an OctList table.
 * ========================================================================= */

#panel-search-results {
    /* Match existing panel-* defaults. The .main-panel rule handles display. */
}

.gs-results-shell {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 32px 40px;
    gap: 20px;
}

.gs-results-header {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gs-results-input-row {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 48px;
    max-width: 720px;
    padding: 0 18px;
    background: var(--oecta-surface-2, rgba(238, 237, 241, 0.7));
    border-radius: 10px;
    transition: box-shadow 120ms ease-out;
}

.gs-results-input-row:focus-within {
    box-shadow: 0 0 0 2px var(--oecta-amber, #fea520);
}

.gs-results-icon {
    color: var(--oecta-on-surface-2, #4a4a4a);
    font-size: 20px;
    flex-shrink: 0;
}

.gs-results-input {
    flex: 1;
    min-width: 0;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--oecta-on-surface-1, #1a1a1a);
}

.gs-results-input::placeholder {
    color: var(--oecta-on-surface-3, #757575);
    font-weight: 400;
}

.gs-results-clear {
    appearance: none;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--oecta-on-surface-2, #4a4a4a);
    transition: background-color 100ms ease-out;
}

.gs-results-clear:hover {
    background: rgba(32, 65, 100, 0.08);
}

.gs-results-clear .material-icons {
    font-size: 18px;
}

.gs-results-clear.hidden {
    display: none;
}

/* Chip filter row */
.gs-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gs-chip {
    appearance: none;
    border: none;
    cursor: pointer;
    height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--oecta-surface-2, rgba(238, 237, 241, 0.7));
    color: var(--oecta-on-surface-2, #4a4a4a);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background-color 120ms ease-out, color 120ms ease-out;
}

.gs-chip:hover {
    background: rgba(32, 65, 100, 0.10);
}

.gs-chip--active {
    background: var(--oecta-navy, #204164);
    color: #ffffff;
}

.gs-chip--active:hover {
    background: #2a5079;
}

.gs-chip-count {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 1px 6px;
    border-radius: 999px;
    background: rgba(32, 65, 100, 0.08);
    color: var(--oecta-on-surface-2, #4a4a4a);
}

.gs-chip--active .gs-chip-count {
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.9);
}

/* Results body — scrollable stack of sections */
.gs-results-body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.gs-results-empty {
    padding: 80px 24px;
    text-align: center;
}

.gs-results-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gs-results-section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0 4px;
}

.gs-results-section-label {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--oecta-on-surface-2, #4a4a4a);
}

.gs-results-section-count {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    color: var(--oecta-on-surface-3, #757575);
}

.gs-results-table {
    width: 100%;
    background: var(--oecta-surface-1, rgba(250, 249, 252, 0.92));
    border-radius: 10px;
    overflow: hidden;
    min-height: 80px;
}

/* Fallback list when OctList is unavailable (e.g., before its script loads) */
.gs-results-fallback .gs-row {
    cursor: pointer;
}

/* =========================================================================
 *  Mobile
 * ========================================================================= */
@media (max-width: 768px) {
    .gs-dropdown {
        max-height: 70vh;
        border-radius: 0 0 14px 14px;
    }

    .gs-dropdown--variant-compact .gs-row {
        min-height: 52px;
        padding: 8px 14px;
    }

    .gs-footer {
        height: 44px;
    }

    /* Palette on small screens — fills the viewport top-down so the on-screen
     * keyboard doesn't push the modal off-screen. */
    .gs-palette-scrim {
        padding: 0;
        align-items: stretch;
    }

    .gs-palette {
        max-width: 100%;
        max-height: 100dvh;
        border-radius: 0;
    }

    .gs-palette-input {
        font-size: 17px;       /* iOS Safari zoom-on-focus threshold */
    }

    .gs-palette-footer {
        gap: 12px;
        font-size: 10px;
    }

    /* Full-page panel on small screens */
    .gs-results-shell {
        padding: 16px 14px 32px;
        gap: 14px;
    }

    .gs-results-input-row {
        max-width: 100%;
    }

    .gs-results-input {
        font-size: 16px;       /* prevents iOS zoom-on-focus */
    }
}
