.thaps-autocomplete-suggestion {
    display: flex;
    align-items: flex-start;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    gap: 12px;
    background: #fff;
    text-align: left;
}

.thaps-autocomplete-suggestion .thaps-img {
    width: 60px;
    flex-shrink: 0;
}

.thaps-autocomplete-suggestion .thaps-img img {
    width: 100%;
    border-radius: 4px;
    display: block;
}

.thaps-content-wrapp {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    width: 100%;
    line-height: normal;
}

.thaps-title {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 1.3;
    text-align: left;
}

.thaps-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0;
}

.thaps-buttons a {
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    box-shadow: none;
}

.thaps-buy-btn {
    background-color: #000;
}
.thaps-buy-btn:hover {
    background-color: #333;
}

.thaps-sell-btn {
    background-color: #9B1F15;
}
.thaps-sell-btn:hover {
    background-color: #b02418;
}

/* Remove unwanted top gap */
.thaps-suggestion-heading {
    display: none;
}

/* Fix clickable area issue */
.thaps-autocomplete-suggestion {
    pointer-events: none;
}
.thaps-autocomplete-suggestion .thaps-img,
.thaps-autocomplete-suggestion .thaps-content-wrapp,
.thaps-autocomplete-suggestion .thaps-buttons a {
    pointer-events: auto;
}