
.ta-header-actions{
    display:flex;
    align-items:center;
    gap:14px;
    font-family:system-ui,-apple-system,BlinkMacSystemFont;
}
.ta-action{
    position:relative;
    width:42px;
    height:42px;
    border-radius:50%;
    background:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #eef1f6;
}
.ta-badge{
    position:absolute;
    top:-4px;
    right:-4px;
    background:#2664eb;
    color:#ffffff;
    font-size:11px;
    font-weight:600;
    min-width:18px;
    height:18px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}
.ta-bounce{
    animation:taBounce .25s ease-out;
}
@keyframes taBounce{
    0%{transform:scale(1)}
    50%{transform:scale(1.25)}
    100%{transform:scale(1)}
}
