/* ===== SEARCH ROW ===== */
.search-row {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.input-wrapper {
    position: relative;
    flex: 1;
}

.lazy-box {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 220px;
    overflow-y: auto;
    z-index: 9999;
}

.lazy-item {
    padding: 6px 10px;
    cursor: pointer;
}

.lazy-item:hover {
    background: #eee;
}

.lazy-item.active {
    background:#dbeafe;
}

.search-input {
    width: 100%;
    padding: 10px;
    padding-right: 30px;
    font-size: 16px;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
}

.clear-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: red;
    display: none;
}

.clear-btn:hover {
    color: #333;
}

.search-input:valid + .clear-btn {
    display: inline;
}

.icon-btn {
    font-size: 22px;
    width: 42px;
    border: 1px solid #aaa;
    background: #eee;
    border-radius: 4px;
    cursor: pointer;
}

/* ===== LANGUAGE SELECTOR ===== */
.lang-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid #aaa;
    border-radius: 4px;
    overflow: hidden;
}

.lang-left {
    padding: 8px 4px;
    background-color: #f0f0f0;
    font-weight: bold;
    font-size: 14px;
    font-family: sans-serif;
    border-right: 1px solid #aaa;
}

.lang-right {
    border: none;
    background-color: #f0f0f0;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    font-family: sans-serif;
}

.lang-right:focus {
    outline: none;
}