/**
 * Combined Search Bar – search input + simple dropdown for search type.
 */

.combined-search-bar__inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    max-width: 100%;
    gap: 0;
}

.combined-search-bar__input-wrap {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    display: block;
}

.combined-search-bar__input {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    height: 44px;
    padding: 10px 44px 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
    background: #fff;
}

.combined-search-bar__icon {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
}

.combined-search-bar__icon:hover,
.combined-search-bar__icon:focus {
    color: var(--global-palette1, #4e5c74);
    background: transparent;
}

.combined-search-bar__icon:focus {
    outline: none;
}

.combined-search-bar__input:focus {
    outline: none;
}

.combined-search-bar__input-wrap:focus-within {
    outline: 1px solid var(--global-palette1, #4e5c74);
    outline-offset: 0;
    border-radius: 6px;
}

.combined-search-bar__select {
    flex-shrink: 0;
    height: 44px;
    padding: 10px 32px 10px 12px;
    border: 1px solid #4e5c74;
    border-radius: 6px;
    font-size: 0.9375rem;
    background-color: #fff;
    cursor: pointer;
    box-sizing: border-box;
    white-space: nowrap;
}

.combined-search-bar__select:focus {
    outline: none;
    border-color: var(--global-palette1, #4e5c74);
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
}
