.tpm-search-wrapper {
    position: relative;
}

.tpm-spinner {
    border: 4px solid #ccc;
    border-top: 4px solid #000;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    margin: 10px auto;
}

.tpm-search-message {
    text-align: center;
    font-size: 14px;
    color: #333;
    margin-top: 5px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}