/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 21 2026 | 13:06:26 */
.tennis-player-rich-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f4f7f4;
    border: 1px solid #e1e8e1;
    border-radius: 50px;
    padding: 3px 12px 3px 3px;
    text-decoration: none !important;
    color: #1a4a1a;
    font-weight: 500;
    font-size: 0.95em;
    vertical-align: middle;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    margin: 0 2px;
}

.tennis-player-rich-link:hover {
    background: #e6f0e6;
    border-color: #c8dcc8;
    color: #0d2b0d;
    box-shadow: 0 4px 8px rgba(0,0,0,0.06);
    transform: translateY(-1px);
}

.tennis-player-rich-link .tp-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #fff;
}

/* Измененное правило: теперь оно не вызывает ошибку в редакторе */
.tennis-player-rich-link.no-avatar {
    padding-left: 12px;
}

.tennis-player-rich-link .tp-name {
    line-height: 1;
}