.top10-content {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    max-height: 70vh;
    overflow-y: auto;
}

.top10-header {
    text-align: center;
    margin-bottom: 20px;
}

.top10-header h4 {
    font-size: 1em;
    margin: 0;
    color: #00ff39;
}

.last-update {
    font-size: 0.8em;
    color: #666;
    margin: 5px 0 0;
}

.top10-info {
    font-size: 0.8em;
    color: #888;
    margin: 5px 0;
}

.top10-list-scroll {
    padding: 2px;
}

.top10-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.top10-player {
    display: flex;
    align-items: center;
    background: #3d3d3d;
    color: #ffffff;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.top10-player.first {
    background: linear-gradient(45deg, #007900, #32CD32);
    color: #fff;
}

.top10-player.second {
    background: linear-gradient(45deg, #313131, #C0C0C0);
    color: #fff;
}

.top10-player.third {
    background: linear-gradient(45deg, #8B4513, #CD7F32);
    color: #fff;
}

.top10-rank {
    font-size: 1.2em;
    font-weight: bold;
    width: 30px;
    text-align: center;
}

.top10-player-info {
    flex: 1;
    margin-left: 10px;
}

.top10-player-name {
    font-weight: bold;
    font-size: 1em;
}

.top10-player-id {
    font-size: 0.85em;
    color: #bbb;
    font-family: monospace;
    margin-bottom: 2px;
    margin-top: 2px;
    letter-spacing: 1px;
}

.top10-player-stats {
    display: flex;
    gap: 15px;
    font-size: 0.9em;
    margin-top: 5px;
}

.top10-badge {
    display: inline-block;
    background: #00ff39;
    color: #222;
    font-size: 0.8em;
    font-weight: bold;
    border-radius: 8px;
    padding: 2px 8px;
    margin-left: 8px;
    margin-right: 2px;
    vertical-align: middle;
}

.top10-badge.tu {
    background: #FFD700;
    color: #222;
}

.top10-medal {
    font-size: 1.5em;
    margin-left: 10px;
}

.no-data-message {
    text-align: center;
    padding: 20px;
    color: #ffffff;
    font-style: italic;
}

.top10-close-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding: 10px;
}

.top10-close-btn {
    background: #ff0000;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.2s;
}

.top10-close-btn:hover {
    background: #4d4d4d;
} 