.recent-search-history {
    margin-top: 14px;
    text-align: start;
}

.recent-search-history__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.recent-search-history__title {
    font-size: 13px;
    font-weight: 600;
    color: #3e4a56;
}

.recent-search-history__clear {
    border: 0;
    background: transparent;
    color: #97a3b0;
    font-size: 12px;
    padding: 0;
    cursor: pointer;
}

.recent-search-history__clear:hover {
    color: #2b3946;
    text-decoration: underline;
}

.recent-search-history__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.recent-search-history__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    padding: 6px 12px;
    border: 1px solid #e5eaf0;
    border-radius: 999px;
    background: #fff;
    color: #2b3946;
    font-size: 12px;
    line-height: 1.3;
    text-decoration: none;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.recent-search-history__chip i {
    color: #97a3b0;
    font-size: 11px;
}

.recent-search-history__chip span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 220px;
}

.recent-search-history__chip:hover {
    border-color: #cfd8e3;
    background: #f7f9fb;
    color: #1f2a37;
    text-decoration: none;
}
