.wrap-tournament-table .t-sn.tournament-temporary-player {
    position: relative;
    overflow: visible !important;
    background: #e5f2ff !important;
    box-shadow: inset 4px 0 0 #1769aa;
}

.wrap-tournament-table .t-sn.tournament-temporary-player .tournament-temporary-player__nickname {
    position: relative;
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    color: #124f80 !important;
    font-weight: 700;
    cursor: help;
    text-decoration: none;
}

.wrap-tournament-table .t-sn.tournament-temporary-player .tournament-temporary-player__nickname.is-editable {
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
}

.tournament-temporary-player__icon {
    flex: 0 0 auto;
    margin-right: 5px;
    color: #1769aa;
}

.tournament-temporary-player__name {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tournament-temporary-player__nickname[data-tooltip]::after {
    position: absolute;
    z-index: 1000;
    left: 50%;
    bottom: calc(100% + 9px);
    width: max-content;
    max-width: 320px;
    padding: 7px 10px;
    border-radius: 6px;
    background: #123f63;
    color: #fff;
    content: attr(data-tooltip);
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;
    text-align: center;
    overflow-wrap: anywhere;
    white-space: pre-line;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 4px);
    transition: opacity .15s ease, transform .15s ease;
}

.tournament-temporary-player__nickname[data-tooltip]:hover::after,
.tournament-temporary-player__nickname[data-tooltip]:focus::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

.tournament-temporary-player-rename__field {
    display: block;
    margin-top: 14px;
    color: #2f363d;
    font-weight: 600;
}

.tournament-temporary-player-rename__field input {
    box-sizing: border-box;
    width: 100%;
    margin-top: 7px;
}

.tournament-temporary-player-rename__error {
    min-height: 18px;
    margin-top: 8px;
    color: #b42318;
    font-size: 13px;
    line-height: 1.35;
}

@media (max-width: 640px) {
    .tournament-temporary-player__nickname[data-tooltip]::after {
        display: none;
    }
}
