#gts-app .gts-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

#gts-app .gts-suggestion-item {
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 5px;
    text-align: center;
    background: #f9f9f9;
    flex: 1 1 calc(33.333% - 10px); /* 3 items per row by default */
    box-sizing: border-box;
    min-width: 120px;
    max-width: 200px;
}

#gts-app .gts-suggestion-item img {
    display: block;
    margin: 0 auto 5px auto;
    max-width: 100%;
    height: auto;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    #gts-app .gts-suggestion-item {
        flex: 1 1 calc(50% - 10px); /* 2 items per row */
        max-width: none;
    }
}

@media screen and (max-width: 480px) {
    #gts-app .gts-suggestion-item {
        flex: 1 1 100%; /* 1 item per row */
    }
}

#gts-results img {
    width: auto !important;
    height: auto !important;
    max-height: 140px;
}
