.tg-check-status {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    min-height: 20px;
    transition: opacity 0.2s;
}
.tg-check-status.loading { color: var(--text-secondary); opacity: 0.7; }
.tg-check-status.notfound { color: var(--text-secondary); }
.tg-check-status.error { color: var(--danger-text, #dc3545); }

.tg-profile-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    margin-top: 0.75rem;
    background: var(--surface-1);
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 12px;
    text-align: left;
}
.tg-profile-card.confirmed {
    border-color: var(--telegram);
    background: rgba(0, 136, 204, 0.08);
}
.tg-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--surface-2);
    flex-shrink: 0;
}
.tg-avatar-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--telegram);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    flex-shrink: 0;
}
.tg-profile-info { flex: 1; min-width: 0; }
.tg-profile-name {
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 2px;
    line-height: 1.3;
}
.tg-profile-username {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}
.tg-verify-row {
    display: flex;
    gap: 8px;
    margin-top: 0.75rem;
}
.tg-verify-row .btn {
    flex: 1;
    justify-content: center;
    padding: 10px 14px;
    font-size: 0.9rem;
}
.tg-verify-no {
    background: var(--surface-2);
    color: var(--text-primary);
}
.tg-verify-no:hover {
    background: var(--surface-2);
    filter: brightness(0.95);
}
.tg-confirmed-badge {
    font-size: 0.8rem;
    color: var(--telegram);
    font-weight: 600;
    margin-top: 6px;
}
        

