.tm-search-wrapper {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
}

.tm-search-bar {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

#tm-search-input {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

#tm-search-button {
    background-color: #0047ab;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

#tm-search-button:hover {
    background-color: #003a91;
}

.tm-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 20px;
}

.tm-result-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 15px;
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.tm-result-image img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.na-logo {
    width: 60px;
    height: 60px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #555;
}

.tm-result-details {
    flex: 1;
}

.tm-result-details h3 {
    margin: 0 0 5px;
    font-size: 18px;
}
