/* Search bar */
.tcs-search-wrapper {
    position: relative;
    display: flex;
    gap: 8px;
}

.tcs-search-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.tcs-search-btn {
    padding: 10px 18px;
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 6px;
}

/* Autofill */
.tcs-autofill {
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: none;
    z-index: 999;
}

.tcs-suggestion {
    display: flex;
    gap: 10px;
    padding: 10px;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #eee;
}

.tcs-suggestion img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.tcs-suggestion span {
    font-size: 13px;
    color: #666;
}

.tcs-suggestion:hover {
    background: #f5f7fa;
}

.tcs-no-result {
    padding: 10px;
    color: #999;
}
