/* =====================================
   WIDGET TOP 10 KLUBÓW (RIGHTBAR)
   ===================================== */





.top-clubs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.top-club-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.top-club-item:hover {
    background: #f0f0ff;
    transform: translateX(3px);
}

.top-club-item.podium {
    background: #e3eafc;
    border-left: 4px solid #007bff;
}

.club-position {
    font-size: 1.2rem;
    font-weight: 700;
    min-width: 30px;
    text-align: center;
}

.club-mini-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.club-link {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

.club-link:hover .club-name {
    color: #667eea;
}



.club-fans {
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 600;
    white-space: nowrap;
}

.view-full-ranking {
    display: block;
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.view-full-ranking:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .rightbar-top-clubs {
        padding: 15px;
    }
    
    .club-link {
        font-size: 0.85rem;
    }
    
    .club-fans {
        font-size: 0.8rem;
    }
}
