.search-history {
    margin-top: 20px;
    padding: 15px;
}

.search-history-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.search-history-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-history-list a {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 6px;
    background: #444;
    color: #fff;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}

.search-history-list a:hover {
    background: #75b900;
    color: #fff;
    text-decoration: none;
}
